Chore: bump storybook and add build script (#16340)

This commit is contained in:
Dominik Prokop
2019-04-02 13:18:13 +02:00
committed by GitHub
parent ede2d54849
commit 7764f04abf
4 changed files with 293 additions and 363 deletions

View File

@@ -23,9 +23,6 @@ module.exports = ({config, mode}) => {
loader: 'css-loader',
options: {
importLoaders: 2,
// url: false,
// sourceMap: false,
// minimize: false,
},
},
{

View File

@@ -11,7 +11,8 @@
"scripts": {
"tslint": "tslint -c tslint.json --project tsconfig.json",
"typecheck": "tsc --noEmit",
"storybook": "start-storybook -p 9001 -c .storybook -s ../../public",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -o ./dist/storybook -c .storybook",
"clean": "rimraf ./dist ./compiled",
"build": "rollup -c rollup.config.ts"
},