File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
node_modules
3
3
/dist
4
+ /build
4
5
5
6
# local env files
6
7
.env.local
Original file line number Diff line number Diff line change 18
18
"scripts" : {
19
19
"serve" : " vue-cli-service serve --open" ,
20
20
"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" ,
22
24
"test" : " vue-cli-service test" ,
23
25
"lint" : " vue-cli-service lint"
24
26
},
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- lintOnSave : false
2
+ lintOnSave : false ,
3
+ outputDir : 'build' ,
4
+ css : {
5
+ extract : false
6
+ }
3
7
} ;
You can’t perform that action at this time.
0 commit comments