Skip to content

Commit

Permalink
feat(textinput): generate stylesheet in build
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketrent committed Jul 10, 2018
1 parent 3a46264 commit cd0dd34
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/textinput/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
"main": "index.js",
"module": "index.js",
"scripts": {
"build": "babel src --out-dir dist --ignore spec.js --copy-files",
"build:watch": "npm run build -- --watch",
"build": "run-s build:js build:css",
"build:css": "build-css",
"build:js": "babel src --out-dir dist --ignore spec.js --copy-files",
"build:watch": "npm run build:js -- --watch",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
Expand All @@ -32,6 +34,7 @@
"prop-types": "^15.5.10"
},
"devDependencies": {
"@pluralsight/ps-design-system-build": "^1.8.2",
"@pluralsight/ps-design-system-storybook-addon-theme": "^1.1.38",
"@storybook/addon-actions": "3.2.14",
"@storybook/addon-storyshots": "3.2.4",
Expand All @@ -40,6 +43,7 @@
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^20.0.4"
"jest": "^20.0.4",
"npm-run-all": "^4.1.2"
}
}

0 comments on commit cd0dd34

Please sign in to comment.