File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
3
- ' 13'
4
+
5
+ cache :
6
+ yarn : true
7
+ directories :
8
+ - node_modules
9
+
10
+ install :
11
+ - yarn install
12
+
13
+ script :
14
+ - yarn build:storybook
15
+
16
+ deploy :
17
+ provider : pages
18
+ local_dir : storybook-static
19
+ skip_cleanup : false
20
+ github_token : $GITHUB_TOKEN
21
+ keep_history : true
22
+ on :
23
+ branch : master
Original file line number Diff line number Diff line change 35
35
"typescript" : " ^3.8.3"
36
36
},
37
37
"scripts" : {
38
- "build" : " rollup -c " ,
39
- "dev" : " rollup -c -w " ,
38
+ "build" : " yarn build:rollup " ,
39
+ "dev" : " yarn dev:storybook " ,
40
40
"test" : " ts-node test/test.ts" ,
41
41
"pretest" : " yarn build" ,
42
- "storybook" : " start-storybook -p 6006" ,
43
- "build-storybook" : " build-storybook"
42
+ "dev:rollup" : " rollup -c --w" ,
43
+ "dev:storybook" : " start-storybook -p 6006" ,
44
+ "build:rollup" : " rollup -c" ,
45
+ "build:storybook" : " build-storybook"
44
46
},
45
47
"files" : [
46
48
" dist"
You can’t perform that action at this time.
0 commit comments