File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,4 @@ src/generators/dom/shared.ts
17
17
package-lock.json
18
18
.idea /
19
19
* .iml
20
+ store.umd.js
Original file line number Diff line number Diff line change 8
8
" ssr" ,
9
9
" shared.js" ,
10
10
" store.js" ,
11
+ " store.umd.js" ,
11
12
" README.md"
12
13
],
13
14
"scripts" : {
18
19
"codecov" : " codecov" ,
19
20
"precodecov" : " npm run coverage" ,
20
21
"lint" : " eslint src test/*.js" ,
21
- "build" : " node src/shared/_build.js && rollup -c" ,
22
+ "build" : " node src/shared/_build.js && rollup -c && rollup -c rollup.store.config.js " ,
22
23
"prepare" : " npm run build" ,
23
24
"dev" : " node src/shared/_build.js && rollup -c -w" ,
24
25
"pretest" : " npm run build" ,
Original file line number Diff line number Diff line change
1
+ export default {
2
+ input : 'store.js' ,
3
+ output : {
4
+ file : 'store.umd.js' ,
5
+ format : 'umd' ,
6
+ name : 'svelte' ,
7
+ extend : true
8
+ }
9
+ } ;
You can’t perform that action at this time.
0 commit comments