Skip to content

Commit

Permalink
Consistent build / requires (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet authored Mar 4, 2019
1 parent 608ac7c commit 6f7f4cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- run:
name: Build
command: npm run build:prod
command: npm run build

- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "dev-requirements.txt" }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }}-{{ checksum "circlejob.txt" }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"scripts": {
"lint": "./node_modules/.bin/eslint --quiet --fix .",
"lint:test": "./node_modules/.bin/eslint .",
"prepublish": "npm test && npm run build:prod && npm run build:dev",
"prepublish": "npm test && npm run build && npm run build:dev",
"publish-all": "npm publish && echo \"twine!!!\"",
"publish-pypi": "npm run prepublish && python setup.py sdist upload",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"build": "webpack --mode production",
"start": "webpack-serve ./webpack.serve.config.js",
"format": "prettier --config .prettierrc --write src/**/*.js src/**/*.react.js",
"format:test": "prettier --config .prettierrc src/**/*.js src/**/*.react.js --list-different",
Expand Down

0 comments on commit 6f7f4cc

Please sign in to comment.