Skip to content

Commit c1341fd

Browse files
authored
fix(build): Add top-level build:bundle command (#4393)
This allows us to build all bundles at once, the same way we can build all `cjs` or `esm` files at once.
1 parent afd1054 commit c1341fd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"private": true,
33
"scripts": {
44
"build": "node ./scripts/verify-packages-versions.js && lerna run --stream --concurrency 1 --sort build",
5+
"build:bundle": "lerna run --stream --concurrency 1 --sort build:bundle",
56
"build:cjs": "lerna run --stream --concurrency 1 --sort build:cjs",
67
"build:dev": "lerna run --stream --concurrency 1 --sort build:dev",
78
"build:dev:filter": "lerna run --stream --concurrency 1 --sort build:dev --include-filtered-dependencies --include-filtered-dependents --scope",

0 commit comments

Comments
 (0)