Skip to content

Commit 43e861d

Browse files
authored
ref(build): Stop building Vue CDN bundles by default (#4839)
Vue are not uploaded as build artifacts or published to our CDN. Therefore it is not necessary to build them by default (i.e. every time when when running yarn build). remove bundle creation from the yarn build(:watch) scripts so that they are not built anymore by default. It is still possible to build them by explicitly by running yarn build:bundle(:watch).
1 parent 4793df5 commit 43e861d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
"jsdom": "^16.2.2"
3131
},
3232
"scripts": {
33-
"build": "run-p build:cjs build:esm build:bundle build:types",
33+
"build": "run-p build:cjs build:esm build:types",
3434
"build:bundle": "rollup --config",
3535
"build:cjs": "tsc -p tsconfig.cjs.json",
3636
"build:dev": "run-p build:cjs build:esm build:types",
3737
"build:es5": "yarn build:cjs # *** backwards compatibility - remove in v7 ***",
3838
"build:esm": "tsc -p tsconfig.esm.json",
3939
"build:types": "tsc -p tsconfig.types.json",
40-
"build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch build:types:watch",
40+
"build:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",
4141
"build:bundle:watch": "rollup --config --watch",
4242
"build:cjs:watch": "tsc -p tsconfig.cjs.json --watch",
4343
"build:dev:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",

0 commit comments

Comments
 (0)