Skip to content

Commit b09e911

Browse files
authored
chore(release): skip non-package workspaces (#7416)
1 parent 04593d9 commit b09e911

73 files changed

Lines changed: 110 additions & 251 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ jobs:
5858

5959
- name: Publish to npm
6060
run: |
61-
pnpm -r publish --tag ${{ github.event.inputs.npm_tag }} --publish-branch ${{ github.event.inputs.branch }}
61+
pnpm --filter './packages/*' -r publish --tag ${{ github.event.inputs.npm_tag }} --publish-branch ${{ github.event.inputs.branch }}

e2e/cases/css/css-modules-dom/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

e2e/cases/css/inject-styles/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

e2e/cases/css/resolve-ts-paths/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist",

e2e/cases/html/minify/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

e2e/cases/optimization/inline-const/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"outDir": "./dist"
55
},

e2e/cases/performance/resource-hints-prefetch/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

e2e/cases/performance/resource-hints-preload/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

e2e/cases/plugin-babel/decorator/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist",

e2e/cases/plugin-react/disable-fast-refresh/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@rsbuild/config/tsconfig",
2+
"extends": "@scripts/config/tsconfig",
33
"compilerOptions": {
44
"jsx": "react-jsx",
55
"outDir": "./dist"

0 commit comments

Comments
 (0)