Skip to content

Commit

Permalink
Rename 'npm run restart' to 'npm run update' for more clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paruyr Gevorgyan committed Mar 6, 2019
1 parent 404082b commit f5e6d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -31,7 +31,7 @@ install:
before_script:
- ./tools/run_ganache_cli.sh </dev/null 1>/dev/null 2>&1 &
script:
- npm run restart
- npm run update
- npm run lint:sol
- npm run lint:js
- npm run compile-all
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -25,7 +25,7 @@
],
"main": "./npm_package/dist/index.js",
"scripts": {
"restart": "git submodule update --init --recursive && npm i && cd ./external/gnosis/safe-contracts && npm ci && cd -",
"update": "git submodule update --init --recursive && npm i && cd ./external/gnosis/safe-contracts && npm ci && cd -",
"compile": "./node_modules/.bin/truffle compile --all --reset",
"compile:gnosis": "cd ./external/gnosis/safe-contracts && ./node_modules/.bin/truffle compile --all --reset && cd -",
"compile-all": "npm-run-all compile compile:gnosis",
Expand All @@ -38,7 +38,7 @@
"build-package": "node ./npm_package/build_package.js",
"test:package": "./npm_package/test/run_npm_package_test.sh",
"prepack": "npm-run-all compile-all build-package",
"build": "npm-run-all restart lint:sol lint:js compile-all test:contracts build-package test:package"
"build": "npm-run-all update lint:sol lint:js compile-all test:contracts build-package test:package"
},
"devDependencies": {
"abi-decoder": "1.2.0",
Expand Down

0 comments on commit f5e6d04

Please sign in to comment.