Skip to content

Commit c692c94

Browse files
committed
ref: Avoid bundle check script (WIP)
1 parent 8d0aa42 commit c692c94

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"scripts": {
44
"build": "node ./scripts/verify-packages-versions.js && yarn run-p build:rollup build:types build:bundle && yarn build:extras",
5-
"build:bundle": "yarn ts-node scripts/ensure-bundle-deps.ts && yarn lerna run build:bundle",
5+
"build:bundle": "lerna run build:bundle",
66
"build:dev": "run-p build:types build:rollup",
77
"build:dev:filter": "lerna run build:dev --include-filtered-dependencies --include-filtered-dependents --scope",
88
"build:extras": "lerna run build:extras",

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"scripts": {
4646
"build": "run-p build:rollup build:bundle build:types",
47-
"build:bundle": "yarn ts-node ../../scripts/ensure-bundle-deps.ts && yarn rollup --config rollup.bundle.config.js",
47+
"build:bundle": "rollup --config rollup.bundle.config.js",
4848
"build:dev": "run-p build:rollup build:types",
4949
"build:rollup": "rollup -c rollup.npm.config.js",
5050
"build:types": "tsc -p tsconfig.types.json",

packages/integrations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"scripts": {
2828
"build": "run-p build:rollup build:types build:bundle",
29-
"build:bundle": "ts-node ../../scripts/ensure-bundle-deps.ts && ts-node scripts/buildBundles.ts --parallel",
29+
"build:bundle": "ts-node scripts/buildBundles.ts",
3030
"build:dev": "run-p build:rollup build:types",
3131
"build:rollup": "rollup -c rollup.npm.config.js",
3232
"build:types": "tsc -p tsconfig.types.json",

packages/tracing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"scripts": {
2929
"build": "run-p build:rollup build:types build:bundle && yarn build:extras #necessary for integration tests",
30-
"build:bundle": "yarn ts-node ../../scripts/ensure-bundle-deps.ts && yarn rollup --config rollup.bundle.config.js",
30+
"build:bundle": "yarn rollup --config rollup.bundle.config.js",
3131
"build:dev": "run-p build:rollup build:types",
3232
"build:extras": "yarn build:prepack",
3333
"build:prepack": "ts-node ../../scripts/prepack.ts --bundles",

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"scripts": {
3232
"build": "run-p build:rollup build:types",
33-
"build:bundle": "yarn ts-node ../../scripts/ensure-bundle-deps.ts && yarn rollup --config rollup.bundle.config.js",
33+
"build:bundle": "rollup --config rollup.bundle.config.js",
3434
"build:dev": "run-p build:rollup build:types",
3535
"build:rollup": "rollup -c rollup.npm.config.js",
3636
"build:types": "tsc -p tsconfig.types.json",

packages/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"scripts": {
3333
"build": "run-p build:rollup build:bundle build:types",
34-
"build:bundle": "yarn ts-node ../../scripts/ensure-bundle-deps.ts && yarn rollup --config rollup.bundle.config.js",
34+
"build:bundle": "rollup --config rollup.bundle.config.js",
3535
"build:dev": "run-p build:rollup build:types",
3636
"build:rollup": "rollup -c rollup.npm.config.js",
3737
"build:types": "tsc -p tsconfig.types.json",

0 commit comments

Comments
 (0)