Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
Adjust webpack@2 scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Nov 13, 2016
1 parent e7f74fd commit 874d634
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ dependencies:

test:
override:
- npm test && npm run docs-webpack-2-test && npm run docs-webpack-2-reset
- npm test && npm run docs-webpack-2-test # && npm run docs-webpack-2-reset
# no need to run "docs-webpack-2-reset" as circle ci cache is saved just after the initial npm install
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@
"test-setup": "cd test-setup && npm test",
"docs": "babel-node scripts/docs.js",
"docs-linting": "eslint --ignore-path .gitignore --fix docs/scripts docs/src",
"docs-webpack-2": "yarn add webpack@^2.1.0-beta.25 && babel-node scripts/docs.js && cd docs && yarn add extract-text-webpack-plugin@^2.0.0-beta.4",
"docs-webpack-2-reset": "yarn add webpack@^1.11.0 && babel-node scripts/docs.js && cd docs && yarn add extract-text-webpack-plugin@^1.0.1",
"docs-webpack-2-start": "npm run docs-webpack-2 && npm start",
"docs-webpack-2": "npm install webpack@^2.1.0-beta.25 && babel-node scripts/docs.js && cd docs && npm install extract-text-webpack-plugin@^2.0.0-beta.4",
"docs-webpack-2-reset": "npm install webpack@^1.11.0 && babel-node scripts/docs.js && cd docs && npm install extract-text-webpack-plugin@^1.0.1",
"docs-webpack-2-test": "npm run docs-webpack-2 && cd docs && npm test",
"docs-webpack-2-start": "npm run docs-webpack-2 && npm start",
"pretest-docs": "npm run docs && npm run docs-linting",
"test-docs": "cd docs && npm test",
"predocs-start": "npm run docs",
Expand Down

0 comments on commit 874d634

Please sign in to comment.