Skip to content

Commit

Permalink
ref(build): Stop building Vue CDN bundles by default (#4839)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
Lms24 committed Apr 1, 2022
1 parent 4793df5 commit 43e861d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
"jsdom": "^16.2.2"
},
"scripts": {
"build": "run-p build:cjs build:esm build:bundle build:types",
"build": "run-p build:cjs build:esm build:types",
"build:bundle": "rollup --config",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:dev": "run-p build:cjs build:esm build:types",
"build:es5": "yarn build:cjs # *** backwards compatibility - remove in v7 ***",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch build:types:watch",
"build:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",
"build:bundle:watch": "rollup --config --watch",
"build:cjs:watch": "tsc -p tsconfig.cjs.json --watch",
"build:dev:watch": "run-p build:cjs:watch build:esm:watch build:types:watch",
Expand Down

0 comments on commit 43e861d

Please sign in to comment.