Skip to content

Commit f8d811d

Browse files
committed
ref: Rename build:pack to build:transpile
1 parent 148add4 commit f8d811d

File tree

22 files changed

+94
-94
lines changed

22 files changed

+94
-94
lines changed

nx.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"options": {
66
"cacheableOperations": [
77
"build:bundle",
8-
"build:pack",
8+
"build:transpile",
99
"build:tarball",
1010
"build:types"
1111
]
@@ -21,15 +21,15 @@
2121
},
2222
"build:tarball": {
2323
"dependsOn": [
24-
"build:pack"
24+
"build:transpile"
2525
],
2626
"outputs": []
2727
},
28-
"build:pack": {
28+
"build:transpile": {
2929
"dependsOn": [
30-
"build:pack:uncached",
31-
"^build:pack",
32-
"^build:pack:uncached"
30+
"build:transpile:uncached",
31+
"^build:transpile",
32+
"^build:transpile:uncached"
3333
],
3434
"outputs": [
3535
"{projectRoot}/build/npm",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "node ./scripts/verify-packages-versions.js && run-s build:types build:pack build:bundle",
4+
"build": "node ./scripts/verify-packages-versions.js && run-s build:types build:transpile build:bundle",
55
"build:bundle": "lerna run build:bundle",
6-
"build:dev": "run-s build:types build:pack",
6+
"build:dev": "run-s build:types build:transpile",
77
"build:dev:filter": "lerna run build:dev --include-filtered-dependencies --include-filtered-dependents --scope",
8-
"build:pack": "lerna run build:pack",
8+
"build:transpile": "lerna run build:transpile",
99
"build:types": "lerna run build:types",
1010
"build:watch": "lerna run build:watch",
1111
"build:dev:watch": "lerna run build:dev:watch",

packages/angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
"zone.js": "^0.11.8"
4242
},
4343
"scripts": {
44-
"build": "yarn build:pack",
45-
"build:pack": "ng build --prod",
44+
"build": "yarn build:transpile",
45+
"build:transpile": "ng build --prod",
4646
"build:dev": "run-s build",
47-
"build:watch": "run-p build:pack:watch",
48-
"build:pack:watch": "ng build --prod --watch",
47+
"build:watch": "run-p build:transpile:watch",
48+
"build:transpile:watch": "ng build --prod --watch",
4949
"build:tarball": "npm pack ./build",
5050
"circularDepCheck": "madge --circular src/index.ts",
5151
"clean": "rimraf build coverage sentry-angular-*.tgz",

packages/browser/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
"webpack": "^4.30.0"
4545
},
4646
"scripts": {
47-
"build": "run-p build:pack build:bundle build:types",
47+
"build": "run-p build:transpile build:bundle build:types",
4848
"build:bundle": "rollup --config rollup.bundle.config.js",
49-
"build:pack": "rollup -c rollup.npm.config.js",
49+
"build:transpile": "rollup -c rollup.npm.config.js",
5050
"build:types": "tsc -p tsconfig.types.json",
51-
"build:watch": "run-p build:pack:watch build:bundle:watch build:types:watch",
51+
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
5252
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
53-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
53+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
5454
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5555
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
5656
"circularDepCheck": "madge --circular src/index.ts",

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"tslib": "^1.9.3"
2222
},
2323
"scripts": {
24-
"build": "run-p build:pack build:types",
24+
"build": "run-p build:transpile build:types",
2525
"build:dev": "run-s build",
26-
"build:pack": "rollup -c rollup.npm.config.js",
26+
"build:transpile": "rollup -c rollup.npm.config.js",
2727
"build:types": "tsc -p tsconfig.types.json",
28-
"build:watch": "run-p build:pack:watch build:types:watch",
28+
"build:watch": "run-p build:transpile:watch build:types:watch",
2929
"build:dev:watch": "run-s build:watch",
30-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
30+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
3131
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3232
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
3333
"circularDepCheck": "madge --circular src/index.ts",

packages/gatsby/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
"react": "^18.0.0"
3636
},
3737
"scripts": {
38-
"build": "run-p build:pack build:types",
38+
"build": "run-p build:transpile build:types",
3939
"build:dev": "run-s build",
4040
"build:plugin": "tsc -p tsconfig.plugin.json",
41-
"build:pack": "run-p build:rollup build:plugin",
41+
"build:transpile": "run-p build:rollup build:plugin",
4242
"build:rollup": "rollup -c rollup.npm.config.js",
4343
"build:types": "tsc -p tsconfig.types.json",
44-
"build:watch": "run-p build:pack:watch build:types:watch",
44+
"build:watch": "run-p build:transpile:watch build:types:watch",
4545
"build:dev:watch": "run-s build:watch",
46-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
46+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4747
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4848
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
4949
"circularDepCheck": "madge --circular src/index.ts",

packages/hub/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
"tslib": "^1.9.3"
2323
},
2424
"scripts": {
25-
"build": "run-p build:pack build:types",
25+
"build": "run-p build:transpile build:types",
2626
"build:dev": "run-s build",
27-
"build:pack": "rollup -c rollup.npm.config.js",
27+
"build:transpile": "rollup -c rollup.npm.config.js",
2828
"build:types": "tsc -p tsconfig.types.json",
29-
"build:watch": "run-p build:pack:watch build:types:watch",
29+
"build:watch": "run-p build:transpile:watch build:types:watch",
3030
"build:dev:watch": "run-s build:watch",
31-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
31+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
3232
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3333
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
3434
"circularDepCheck": "madge --circular src/index.ts",

packages/integrations/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"chai": "^4.1.2"
2626
},
2727
"scripts": {
28-
"build": "run-p build:pack build:types build:bundle",
28+
"build": "run-p build:transpile build:types build:bundle",
2929
"build:bundle": "ts-node scripts/buildBundles.ts",
30-
"build:dev": "run-p build:pack build:types",
31-
"build:pack": "rollup -c rollup.npm.config.js",
30+
"build:dev": "run-p build:transpile build:types",
31+
"build:transpile": "rollup -c rollup.npm.config.js",
3232
"build:types": "tsc -p tsconfig.types.json",
33-
"build:watch": "run-p build:pack:watch build:types:watch",
33+
"build:watch": "run-p build:transpile:watch build:types:watch",
3434
"build:dev:watch": "run-s build:watch",
35-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
35+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
3636
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3737
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
3838
"circularDepCheck": "madge --circular src/index.ts",

packages/nextjs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@
4848
}
4949
},
5050
"scripts": {
51-
"build": "run-p build:pack build:types",
51+
"build": "run-p build:transpile build:types",
5252
"build:dev": "run-s build",
53-
"build:pack": "ts-node scripts/buildRollup.ts",
53+
"build:transpile": "ts-node scripts/buildRollup.ts",
5454
"build:types": "tsc -p tsconfig.types.json",
55-
"build:watch": "run-p build:pack:watch build:types:watch",
55+
"build:watch": "run-p build:transpile:watch build:types:watch",
5656
"build:dev:watch": "run-s build:watch",
57-
"build:pack:watch": "nodemon --ext ts --watch src scripts/buildRollup.ts",
57+
"build:transpile:watch": "nodemon --ext ts --watch src scripts/buildRollup.ts",
5858
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5959
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
6060
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular --exclude 'config/types\\.ts' src/index.server.ts # see https://github.com/pahen/madge/issues/306",

packages/node/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"nock": "^13.0.5"
3434
},
3535
"scripts": {
36-
"build": "run-p build:pack build:types",
36+
"build": "run-p build:transpile build:types",
3737
"build:dev": "run-s build",
38-
"build:pack": "rollup -c rollup.npm.config.js",
38+
"build:transpile": "rollup -c rollup.npm.config.js",
3939
"build:types": "tsc -p tsconfig.types.json",
40-
"build:watch": "run-p build:pack:watch build:types:watch",
40+
"build:watch": "run-p build:transpile:watch build:types:watch",
4141
"build:dev:watch": "run-s build:watch",
42-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
42+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4343
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4444
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
4545
"circularDepCheck": "madge --circular src/index.ts",

packages/opentelemetry-node/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
"@sentry/node": "7.30.0"
3737
},
3838
"scripts": {
39-
"build": "run-p build:pack build:types",
39+
"build": "run-p build:transpile build:types",
4040
"build:dev": "run-s build",
41-
"build:pack": "rollup -c rollup.npm.config.js",
41+
"build:transpile": "rollup -c rollup.npm.config.js",
4242
"build:types": "tsc -p tsconfig.types.json",
43-
"build:watch": "run-p build:pack:watch build:types:watch",
43+
"build:watch": "run-p build:transpile:watch build:types:watch",
4444
"build:dev:watch": "run-s build:watch",
45-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
45+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4646
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4747
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
4848
"circularDepCheck": "madge --circular src/index.ts",

packages/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
5151
"redux": "^4.0.5"
5252
},
5353
"scripts": {
54-
"build": "run-p build:pack build:types",
54+
"build": "run-p build:transpile build:types",
5555
"build:dev": "run-s build",
56-
"build:pack": "rollup -c rollup.npm.config.js",
56+
"build:transpile": "rollup -c rollup.npm.config.js",
5757
"build:types": "tsc -p tsconfig.types.json",
58-
"build:watch": "run-p build:pack:watch build:types:watch",
58+
"build:watch": "run-p build:transpile:watch build:types:watch",
5959
"build:dev:watch": "run-s build:watch",
60-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
60+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
6161
"build:types:watch": "tsc -p tsconfig.types.json --watch",
6262
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
6363
"circularDepCheck": "madge --circular src/index.ts",

packages/remix/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
"react": "16.x || 17.x || 18.x"
4545
},
4646
"scripts": {
47-
"build": "run-p build:pack build:types",
47+
"build": "run-p build:transpile build:types",
4848
"build:dev": "run-s build",
49-
"build:pack": "rollup -c rollup.npm.config.js",
49+
"build:transpile": "rollup -c rollup.npm.config.js",
5050
"build:types": "tsc -p tsconfig.types.json",
51-
"build:watch": "run-p build:pack:watch build:types:watch",
51+
"build:watch": "run-p build:transpile:watch build:types:watch",
5252
"build:dev:watch": "run-s build:watch",
53-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
53+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
5454
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5555
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
5656
"circularDepCheck": "madge --circular src/index.server.ts",

packages/replay/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"sideEffects": false,
99
"scripts": {
1010
"build": "run-s build:worker && run-p build:core build:types build:bundle",
11-
"build:pack": "run-s build:worker build:core",
11+
"build:transpile": "run-s build:worker build:core",
1212
"build:bundle": "rollup -c rollup.bundle.config.js",
13-
"build:dev": "run-p build:worker build:pack build:types",
13+
"build:dev": "run-p build:worker build:transpile build:types",
1414
"build:worker": "rollup -c rollup.config.worker.js",
1515
"build:core": "rollup -c rollup.npm.config.js",
1616
"build:types": "tsc -p tsconfig.types.json",

packages/serverless/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
"read-pkg": "^5.2.0"
3939
},
4040
"scripts": {
41-
"build": "run-p build:pack build:types build:bundle",
41+
"build": "run-p build:transpile build:types build:bundle",
4242
"build:bundle": "yarn ts-node scripts/buildLambdaLayer.ts",
43-
"build:dev": "run-p build:pack build:types",
44-
"build:pack": "rollup -c rollup.npm.config.js",
43+
"build:dev": "run-p build:transpile build:types",
44+
"build:transpile": "rollup -c rollup.npm.config.js",
4545
"build:types": "tsc -p tsconfig.types.json",
46-
"build:watch": "run-p build:pack:watch build:types:watch",
46+
"build:watch": "run-p build:transpile:watch build:types:watch",
4747
"build:dev:watch": "run-s build:watch",
48-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
48+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4949
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5050
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
5151
"circularDepCheck": "madge --circular src/index.ts",

packages/svelte/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
"svelte-jester": "^2.3.2"
3232
},
3333
"scripts": {
34-
"build": "run-p build:pack build:types",
34+
"build": "run-p build:transpile build:types",
3535
"build:dev": "run-s build",
36-
"build:pack": "rollup -c rollup.npm.config.js",
36+
"build:transpile": "rollup -c rollup.npm.config.js",
3737
"build:types": "tsc -p tsconfig.types.json",
38-
"build:watch": "run-p build:pack:watch build:types:watch",
38+
"build:watch": "run-p build:transpile:watch build:types:watch",
3939
"build:dev:watch": "run-s build:watch",
40-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
40+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4141
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4242
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
4343
"circularDepCheck": "madge --circular src/index.ts",

packages/tracing/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
"@types/express": "^4.17.14"
2727
},
2828
"scripts": {
29-
"build": "run-p build:pack build:types build:bundle",
29+
"build": "run-p build:transpile build:types build:bundle",
3030
"build:bundle": "yarn rollup --config rollup.bundle.config.js",
31-
"build:dev": "run-p build:pack build:types",
32-
"build:pack": "rollup -c rollup.npm.config.js",
31+
"build:dev": "run-p build:transpile build:types",
32+
"build:transpile": "rollup -c rollup.npm.config.js",
3333
"build:types": "tsc -p tsconfig.types.json",
34-
"build:watch": "run-p build:pack:watch build:bundle:watch build:types:watch",
34+
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
3535
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
36-
"build:dev:watch": "run-p build:pack:watch build:types:watch",
37-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
36+
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
37+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
3838
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3939
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
4040
"clean": "rimraf build coverage sentry-tracing-*.tgz",

packages/types/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"access": "public"
1717
},
1818
"scripts": {
19-
"build": "run-p build:pack build:types",
19+
"build": "run-p build:transpile build:types",
2020
"build:dev": "run-s build",
21-
"build:pack": "rollup -c rollup.npm.config.js",
21+
"build:transpile": "rollup -c rollup.npm.config.js",
2222
"build:types": "tsc -p tsconfig.types.json",
23-
"build:watch": "run-p build:pack:watch build:types:watch",
23+
"build:watch": "run-p build:transpile:watch build:types:watch",
2424
"build:dev:watch": "run-s build:watch",
25-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
25+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
2626
"build:types:watch": "tsc -p tsconfig.types.json --watch",
2727
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
2828
"clean": "rimraf build sentry-types-*.tgz",

packages/utils/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"chai": "^4.1.2"
2626
},
2727
"scripts": {
28-
"build": "run-p build:pack build:types",
28+
"build": "run-p build:transpile build:types",
2929
"build:dev": "run-s build",
30-
"build:pack": "yarn ts-node scripts/buildRollup.ts",
31-
"build:pack:uncached": "yarn ts-node scripts/buildRollup.ts",
30+
"build:transpile": "yarn ts-node scripts/buildRollup.ts",
31+
"build:transpile:uncached": "yarn ts-node scripts/buildRollup.ts",
3232
"build:types": "tsc -p tsconfig.types.json",
33-
"build:watch": "run-p build:pack:watch build:types:watch",
33+
"build:watch": "run-p build:transpile:watch build:types:watch",
3434
"build:dev:watch": "run-s build:watch",
35-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
35+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
3636
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3737
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
3838
"circularDepCheck": "madge --circular src/index.ts",

packages/vue/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
"vue": "~3.2.41"
3030
},
3131
"scripts": {
32-
"build": "run-p build:pack build:types",
32+
"build": "run-p build:transpile build:types",
3333
"build:bundle": "rollup --config rollup.bundle.config.js",
34-
"build:dev": "run-p build:pack build:types",
35-
"build:pack": "rollup -c rollup.npm.config.js",
34+
"build:dev": "run-p build:transpile build:types",
35+
"build:transpile": "rollup -c rollup.npm.config.js",
3636
"build:types": "tsc -p tsconfig.types.json",
37-
"build:watch": "run-p build:pack:watch build:types:watch",
37+
"build:watch": "run-p build:transpile:watch build:types:watch",
3838
"build:bundle:watch": "rollup --config --watch",
39-
"build:dev:watch": "run-p build:pack:watch build:types:watch",
40-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
39+
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
40+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4141
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4242
"build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build",
4343
"circularDepCheck": "madge --circular src/index.ts",

packages/wasm/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"puppeteer": "^5.5.0"
3131
},
3232
"scripts": {
33-
"build": "run-p build:pack build:bundle build:types",
33+
"build": "run-p build:transpile build:bundle build:types",
3434
"build:bundle": "rollup --config rollup.bundle.config.js",
35-
"build:dev": "run-p build:pack build:types",
36-
"build:pack": "rollup -c rollup.npm.config.js",
35+
"build:dev": "run-p build:transpile build:types",
36+
"build:transpile": "rollup -c rollup.npm.config.js",
3737
"build:types": "tsc -p tsconfig.types.json",
38-
"build:watch": "run-p build:pack:watch build:bundle:watch build:types:watch",
38+
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
3939
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
40-
"build:dev:watch": "run-p build:pack:watch build:types:watch",
41-
"build:pack:watch": "rollup -c rollup.npm.config.js --watch",
40+
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
41+
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
4242
"build:types:watch": "tsc -p tsconfig.types.json --watch",
4343
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
4444
"circularDepCheck": "madge --circular src/index.ts",

0 commit comments

Comments
 (0)