Skip to content

Commit 5d51ca1

Browse files
committed
replace run-p with g:run-p
1 parent 0d0db4a commit 5d51ca1

File tree

38 files changed

+140
-96
lines changed

38 files changed

+140
-96
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
"yalc:publish": "lerna run yalc:publish",
4545
"g:downlevel-dts": "cd $INIT_CWD && downlevel-dts",
4646
"g:rollup": "cd $INIT_CWD && rollup",
47-
"g:eslint": "cd $INIT_CWD && eslint"
47+
"g:eslint": "cd $INIT_CWD && eslint",
48+
"g:run-p": "cd $INIT_CWD && run-p"
4849
},
4950
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
5051
"volta": {
@@ -128,7 +129,7 @@
128129
"lerna": "7.1.1",
129130
"madge": "7.0.0",
130131
"nodemon": "^2.0.16",
131-
"npm-run-all2": "^6.2.0",
132+
"npm-run-all2": "^8.0.4",
132133
"prettier": "^3.1.1",
133134
"rimraf": "^5.0.10",
134135
"rollup": "^4.35.0",

packages/astro/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
"vite": "^5.4.11"
6767
},
6868
"scripts": {
69-
"build": "run-p build:transpile build:types",
69+
"build": "yarn g:run-p build:transpile build:types",
7070
"build:dev": "yarn build",
7171
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
7272
"build:types": "tsc -p tsconfig.types.json",
73-
"build:watch": "run-p build:transpile:watch build:types:watch",
73+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
7474
"build:dev:watch": "yarn build:watch",
7575
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7676
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/aws-serverless/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@
7878
"typescript": "~5.0.0"
7979
},
8080
"scripts": {
81-
"build": "run-p build:transpile build:types build:bundle",
81+
"build": "yarn g:run-p build:transpile build:types build:bundle",
8282
"build:bundle": "yarn build:layer",
8383
"build:layer": "yarn ts-node scripts/buildLambdaLayer.ts",
84-
"build:dev": "run-p build:transpile build:types",
84+
"build:dev": "yarn g:run-p build:transpile build:types",
8585
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs && yarn build:layer",
8686
"build:types": "yarn build:types:core && yarn build:types:downlevel",
8787
"build:types:core": "tsc -p tsconfig.types.json",
8888
"build:types:downlevel": "yarn g:downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
89-
"build:watch": "run-p build:transpile:watch build:types:watch",
89+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
9090
"build:dev:watch": "yarn build:watch",
9191
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
9292
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/browser-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
"@sentry/core": "9.32.0"
4343
},
4444
"scripts": {
45-
"build": "run-p build:transpile build:types",
45+
"build": "yarn g:run-p build:transpile build:types",
4646
"build:dev": "yarn build",
4747
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
4848
"build:types": "yarn build:types:core && yarn build:types:downlevel",
4949
"build:types:core": "tsc -p tsconfig.types.json",
5050
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
51-
"build:watch": "run-p build:transpile:watch build:types:watch",
52-
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
51+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
52+
"build:dev:watch": "yarn g:run-p build:transpile:watch build:types:watch",
5353
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
5454
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5555
"build:tarball": "npm pack",

packages/browser/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@
5050
"fake-indexeddb": "^4.0.1"
5151
},
5252
"scripts": {
53-
"build": "run-p build:transpile build:bundle build:types",
54-
"build:dev": "run-p build:transpile build:types",
53+
"build": "yarn g:run-p build:transpile build:bundle build:types",
54+
"build:dev": "yarn g:run-p build:transpile build:types",
5555
"build:bundle": "yarn g:rollup -c rollup.bundle.config.mjs",
5656
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
5757
"build:types": "yarn build:types:core && yarn build:types:downlevel",
5858
"build:types:core": "tsc -p tsconfig.types.json",
5959
"build:types:downlevel": "yarn g:downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
60-
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
61-
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
60+
"build:watch": "yarn g:run-p build:transpile:watch build:bundle:watch build:types:watch",
61+
"build:dev:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6262
"build:bundle:watch": "yarn g:rollup -c rollup.bundle.config.mjs --watch",
6363
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
6464
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/bun/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
"bun-types": "^1.2.9"
4747
},
4848
"scripts": {
49-
"build": "run-p build:transpile build:types",
49+
"build": "yarn g:run-p build:transpile build:types",
5050
"build:dev": "yarn build",
5151
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
5252
"build:types": "yarn build:types:core && yarn build:types:downlevel",
5353
"build:types:core": "tsc -p tsconfig.types.json",
5454
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
55-
"build:watch": "run-p build:transpile:watch build:types:watch",
55+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
5656
"build:dev:watch": "yarn build:watch",
5757
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
5858
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/cloudflare/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@
6666
"wrangler": "^3.67.1"
6767
},
6868
"scripts": {
69-
"build": "run-p build:transpile build:types",
69+
"build": "yarn g:run-p build:transpile build:types",
7070
"build:dev": "yarn build",
7171
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
7272
"build:types": "yarn build:types:core && yarn build:types:downlevel",
7373
"build:types:core": "tsc -p tsconfig.types.json",
7474
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
75-
"build:watch": "run-p build:transpile:watch build:types:watch",
75+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
7676
"build:dev:watch": "yarn build:watch",
7777
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7878
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
"access": "public"
4040
},
4141
"scripts": {
42-
"build": "run-p build:transpile build:types",
42+
"build": "yarn g:run-p build:transpile build:types",
4343
"build:dev": "yarn build",
4444
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
4545
"build:types": "yarn build:types:core && yarn build:types:downlevel",
4646
"build:types:core": "tsc -p tsconfig.types.json",
4747
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
48-
"build:watch": "run-p build:transpile:watch build:types:watch",
48+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
4949
"build:dev:watch": "yarn build:watch",
5050
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
5151
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/ember/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"build:tarball": "ember ts:precompile && npm pack && ember ts:clean",
2121
"clean": "yarn rimraf sentry-ember-*.tgz dist tmp build .node_modules.ember-try package.json.ember-try instance-initializers index.d.ts runloop.d.ts types.d.ts",
22-
"lint": "run-p lint:js lint:hbs lint:ts",
22+
"lint": "yarn g:run-p lint:js lint:hbs lint:ts",
2323
"lint:hbs": "ember-template-lint .",
2424
"lint:js": "yarn g:eslint .",
2525
"lint:ts": "tsc",

packages/feedback/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
"preact": "10.19.4"
4646
},
4747
"scripts": {
48-
"build": "run-p build:transpile build:types build:bundle",
48+
"build": "yarn g:run-p build:transpile build:types build:bundle",
4949
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
5050
"build:bundle": "yarn g:rollup -c rollup.bundle.config.mjs",
51-
"build:dev": "run-p build:transpile build:types",
51+
"build:dev": "yarn g:run-p build:transpile build:types",
5252
"build:types": "yarn build:types:core && yarn build:types:downlevel",
5353
"build:types:core": "tsc -p tsconfig.types.json",
5454
"build:types:downlevel": "yarn g:downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8 && yarn node ./scripts/shim-preact-export.js",
55-
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
56-
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
55+
"build:watch": "yarn g:run-p build:transpile:watch build:bundle:watch build:types:watch",
56+
"build:dev:watch": "yarn g:run-p build:transpile:watch build:types:watch",
5757
"build:transpile:watch": "yarn build:transpile --watch",
5858
"build:bundle:watch": "yarn build:bundle --watch",
5959
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/gatsby/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@
5959
"webpack": "^5.0.0"
6060
},
6161
"scripts": {
62-
"build": "run-p build:transpile build:types",
62+
"build": "yarn g:run-p build:transpile build:types",
6363
"build:dev": "yarn build",
6464
"build:plugin": "tsc -p tsconfig.plugin.json",
65-
"build:transpile": "run-p build:rollup build:plugin",
65+
"build:transpile": "yarn g:run-p build:rollup build:plugin",
6666
"build:rollup": "yarn g:rollup -c rollup.npm.config.mjs",
6767
"build:types": "yarn build:types:core && yarn build:types:downlevel",
6868
"build:types:core": "tsc -p tsconfig.types.json",
6969
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
70-
"build:watch": "run-p build:transpile:watch build:types:watch",
70+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
7171
"build:dev:watch": "yarn build:watch",
7272
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch",
7373
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/google-cloud-serverless/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@
5959
"nock": "^13.5.5"
6060
},
6161
"scripts": {
62-
"build": "run-p build:transpile build:types",
62+
"build": "yarn g:run-p build:transpile build:types",
6363
"build:dev": "yarn build",
6464
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
6565
"build:types": "yarn build:types:core && yarn build:types:downlevel",
6666
"build:types:core": "tsc -p tsconfig.types.json",
6767
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
68-
"build:watch": "run-p build:transpile:watch build:types:watch",
68+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6969
"build:dev:watch": "yarn build:watch",
7070
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7171
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/integration-shims/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
"sideEffects": false,
3232
"private": true,
3333
"scripts": {
34-
"build": "run-p build:transpile build:types",
34+
"build": "yarn g:run-p build:transpile build:types",
3535
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
3636
"build:types": "yarn build:types:core && yarn build:types:downlevel",
3737
"build:types:core": "tsc -p tsconfig.types.json",
3838
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
3939
"build:dev": "yarn build",
40-
"build:watch": "run-p build:transpile:watch build:types:watch",
41-
"build:dev:watch": "run-p build:watch",
40+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
41+
"build:dev:watch": "yarn g:run-p build:watch",
4242
"build:transpile:watch": "yarn build:transpile --watch",
4343
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4444
"clean": "rimraf build",

packages/nestjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@
6363
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
6464
},
6565
"scripts": {
66-
"build": "run-p build:transpile build:types",
66+
"build": "yarn g:run-p build:transpile build:types",
6767
"build:dev": "yarn build",
6868
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
6969
"build:types": "yarn build:types:core && yarn build:types:setup",
7070
"build:types:core": "tsc -p tsconfig.types.json",
7171
"build:types:setup": "tsc -p tsconfig.setup-types.json",
72-
"build:watch": "run-p build:transpile:watch build:types:watch",
72+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
7373
"build:dev:watch": "yarn build:watch",
7474
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7575
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@
102102
"next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0"
103103
},
104104
"scripts": {
105-
"build": "run-p build:transpile build:types",
105+
"build": "yarn g:run-p build:transpile build:types",
106106
"build:dev": "yarn build",
107107
"build:transpile": "ts-node scripts/buildRollup.ts",
108108
"build:types": "yarn build:types:core && yarn build:types:downlevel",
109109
"build:types:core": "tsc -p tsconfig.types.json",
110110
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
111-
"build:watch": "run-p build:transpile:watch build:types:watch",
111+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
112112
"build:dev:watch": "yarn build:watch",
113113
"build:transpile:watch": "nodemon --ext ts --watch src scripts/buildRollup.ts",
114114
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/node-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5252
"build:dev": "yarn clean && yarn build",
5353
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
54-
"build:watch": "run-p build:transpile:watch build:types:watch",
54+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
5555
"build:tarball": "npm pack"
5656
},
5757
"dependencies": {

packages/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@
104104
"@types/node": "^18.19.1"
105105
},
106106
"scripts": {
107-
"build": "run-p build:transpile build:types",
107+
"build": "yarn g:run-p build:transpile build:types",
108108
"build:dev": "yarn build",
109109
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
110110
"build:types": "yarn build:types:core && yarn build:types:downlevel",
111111
"build:types:core": "tsc -p tsconfig.types.json",
112112
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
113-
"build:watch": "run-p build:transpile:watch build:types:watch",
113+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
114114
"build:dev:watch": "yarn build:watch",
115115
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
116116
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"build:nuxt-module": "bash ./generate-build-stubs.bash && nuxt-module-build build --outDir build/module",
6262
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs && yarn build:nuxt-module",
6363
"build:types": "tsc -p tsconfig.types.json",
64-
"build:watch": "run-p build:transpile:watch build:types:watch",
64+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6565
"build:dev:watch": "yarn build:watch",
6666
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
6767
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/opentelemetry/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
"@opentelemetry/semantic-conventions": "^1.34.0"
5959
},
6060
"scripts": {
61-
"build": "run-p build:transpile build:types",
61+
"build": "yarn g:run-p build:transpile build:types",
6262
"build:dev": "yarn build",
6363
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
6464
"build:types": "yarn build:types:core && yarn build:types:downlevel",
6565
"build:types:core": "tsc -p tsconfig.types.json",
6666
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
67-
"build:watch": "run-p build:transpile:watch build:types:watch",
67+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6868
"build:dev:watch": "yarn build:watch",
6969
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7070
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/pino-transport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
5151
"pino": "^9.0.0"
5252
},
5353
"scripts": {
54-
"build": "run-p build:transpile build:types",
54+
"build": "yarn g:run-p build:transpile build:types",
5555
"build:dev": "yarn build",
5656
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
5757
"build:types": "yarn build:types:core && yarn build:types:downlevel",
5858
"build:types:core": "tsc -p tsconfig.types.json",
5959
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
60-
"build:watch": "run-p build:transpile:watch build:types:watch",
60+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6161
"build:dev:watch": "yarn build:watch",
6262
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
6363
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/profiling-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5656
"build:dev": "yarn clean && yarn build",
5757
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
58-
"build:watch": "run-p build:transpile:watch build:types:watch",
58+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
5959
"build:tarball": "npm pack",
6060
"test:bundle": "node test-binaries.esbuild.js",
6161
"test": "vitest run",

packages/react-router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
"react-router": "7.x"
6060
},
6161
"scripts": {
62-
"build": "run-p build:transpile build:types",
62+
"build": "yarn g:run-p build:transpile build:types",
6363
"build:dev": "yarn build",
6464
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
6565
"build:types": "yarn build:types:core",
6666
"build:types:core": "tsc -p tsconfig.types.json",
67-
"build:watch": "run-p build:transpile:watch build:types:watch",
67+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
6868
"build:dev:watch": "yarn build:watch",
6969
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
7070
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
"redux": "^4.0.5"
7272
},
7373
"scripts": {
74-
"build": "run-p build:transpile build:types",
74+
"build": "yarn g:run-p build:transpile build:types",
7575
"build:dev": "yarn build",
7676
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
7777
"build:types": "yarn build:types:core && yarn build:types:downlevel",
7878
"build:types:core": "tsc -p tsconfig.types.json",
7979
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
80-
"build:watch": "run-p build:transpile:watch build:types:watch",
80+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
8181
"build:dev:watch": "yarn build:watch",
8282
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
8383
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/remix/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@
9090
"react": "18.x"
9191
},
9292
"scripts": {
93-
"build": "run-p build:transpile build:types",
93+
"build": "yarn g:run-p 'build:transpile' 'build:types'",
9494
"build:dev": "yarn build",
9595
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
9696
"build:types": "yarn build:types:core && yarn build:types:downlevel",
9797
"build:types:core": "tsc -p tsconfig.types.json",
9898
"build:types:downlevel": "yarn g:downlevel-dts build/types build/types-ts3.8 --to ts3.8",
99-
"build:watch": "run-p build:transpile:watch build:types:watch",
99+
"build:watch": "yarn g:run-p build:transpile:watch build:types:watch",
100100
"build:dev:watch": "yarn build:watch",
101101
"build:transpile:watch": "yarn g:rollup -c rollup.npm.config.mjs --watch",
102102
"build:types:watch": "tsc -p tsconfig.types.json --watch",

0 commit comments

Comments
 (0)