Skip to content

Commit 8c185db

Browse files
authored
fix(build): Fix references to rollup.bundle.config.js (#5074)
This fixes a few spots where #4950 missed changing references to the new name for our rollup config for CDN bundles, `rollup.bundle.config.js`.
1 parent 656d7c4 commit 8c185db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"build:rollup": "rollup -c rollup.npm.config.js",
5353
"build:types": "tsc -p tsconfig.types.json",
5454
"build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch build:types:watch",
55-
"build:bundle:watch": "rollup --config --watch",
55+
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
5656
"build:cjs:watch": "tsc -p tsconfig.cjs.json --watch",
5757
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
5858
"build:dev:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",

packages/browser/test/integration/debugging.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ These tests are hard to debug, because the testing system is somewhat complex, s
1212
- `suites.yourTestFile.js`:
1313
- Use `it.only` to only run the single test you're interested in.
1414

15-
- Repo-level `rollup.config.js`:
15+
- Repo-level `rollup/bundleHelpers.js`:
1616
- Comment out all bundle variants except whichever one `run.js` is turning into `artifacts/sdk.js`.
1717

18-
- Browser-package-level `rollup.config.js`:
18+
- Browser-package-level `rollup.bundle.config.js`:
1919
- Build only one of `es5` and `es6`.
2020

2121
- Run `build:bundle:watch` in a separate terminal tab, so that when you add `console.log`s to the SDK, they get picked up.

packages/tracing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"build:rollup": "rollup -c rollup.npm.config.js",
3636
"build:types": "tsc -p tsconfig.types.json",
3737
"build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch build:types:watch",
38-
"build:bundle:watch": "rollup --config --watch",
38+
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
3939
"build:cjs:watch": "tsc -p tsconfig.cjs.json --watch",
4040
"build:dev:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",
4141
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",

packages/wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"build:rollup": "rollup -c rollup.npm.config.js",
4040
"build:types": "tsc -p tsconfig.types.json",
4141
"build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch build:types:watch",
42-
"build:bundle:watch": "rollup --config --watch",
42+
"build:bundle:watch": "rollup --config rollup.bundle.config.js --watch",
4343
"build:cjs:watch": "tsc -p tsconfig.cjs.json --watch",
4444
"build:dev:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",
4545
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",

0 commit comments

Comments
 (0)