Skip to content

Commit

Permalink
fix(styles): Copy .less files to 'dist' dir so that they are availabl…
Browse files Browse the repository at this point in the history
…e to consumers
  • Loading branch information
wms committed Sep 14, 2017
1 parent 2669071 commit ab8d660
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"test": "jest --no-cache --coverage",
"build": "tsc --declaration",
"push-coverage": "cat coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && cp README.md package.json .npmrc dist && cd dist && npm publish && cd .. && semantic-release post",
"copy-to-dist": "cp README.md package.json .npmrc dist && cd src && cp **/*.less ../dist --parents",
"publish-dist": "cd dist && npm publish",
"semantic-release": "semantic-release pre && npm run copy-to-dist && npm run publish-dist && semantic-release post",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
Expand Down

0 comments on commit ab8d660

Please sign in to comment.