Skip to content

Commit cc40f02

Browse files
committed
feat: build both lib and wc version for npm package
1 parent c766874 commit cc40f02

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
/dist
4+
/build
45

56
# local env files
67
.env.local

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
"scripts": {
1919
"serve": "vue-cli-service serve --open",
2020
"build": "vue-cli-service build",
21-
"wc": "vue-cli-service build --target wc 'src/components/VueQrReader.vue' && rm -rf docs/code && cp -r dist docs/code",
21+
"dist": "rm -rf dist && yarn wc && yarn lib",
22+
"lib": "vue-cli-service build --target lib && cp -r build dist/lib",
23+
"wc": "vue-cli-service build --target wc 'src/components/VueQrReader.vue' && cp -r build dist",
2224
"test": "vue-cli-service test",
2325
"lint": "vue-cli-service lint"
2426
},

vue.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module.exports = {
2-
lintOnSave: false
2+
lintOnSave: false,
3+
outputDir: 'build',
4+
css: {
5+
extract: false
6+
}
37
};

0 commit comments

Comments
 (0)