File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 14
14
"collection" : " dist/collection/collection-manifest.json" ,
15
15
"collection:main" : " dist/collection/index.js" ,
16
16
"scripts" : {
17
- "build" : " tsc -p scripts/tsconfig.json && npm run build.files && npm run build.component && npm run collection.copy" ,
17
+ "compile.scripts" : " tsc -p scripts/tsconfig.json" ,
18
+ "build" : " npm run compile.scripts && npm run build.files && npm run build.component && npm run collection.copy" ,
18
19
"build.files" : " node scripts/build.js" ,
19
20
"build.component" : " stencil build" ,
20
21
"collection.copy" : " node scripts/collection-copy.js" ,
21
- "start" : " stencil build --dev --watch --serve" ,
22
+ "start" : " npm run compile.scripts && npm run build.files && stencil build --dev --watch --serve" ,
22
23
"test" : " npm run test.spec" ,
23
24
"test.spec" : " stencil test --spec"
24
25
},
Original file line number Diff line number Diff line change @@ -23,10 +23,6 @@ export const config: Config = {
23
23
src : './components/test/*.svg' ,
24
24
dest : './assets/' ,
25
25
} ,
26
- {
27
- src : './svg/*.svg' ,
28
- dest : './build/svg/' ,
29
- } ,
30
26
{
31
27
src : './components/test/' ,
32
28
dest : './test/' ,
You can’t perform that action at this time.
0 commit comments