version
- node 8.9.4
ただのメモ
最新のpackage.jsonにしたい。その時の手順
npmで最新との比較をする。
$ npm outdated
Package Current Wanted Latest Location
truffle 4.1.3 4.1.5 4.1.5 study_solidity
zeppelin-solidity 1.7.0 1.8.0 1.8.0 study_solidity
ncu でもnpm outdatedと同じ物がでる事を確認
$ npm install --save-dev npm-check-updates
$ ./node_modules/.bin/ncu
Using ~ package.json
⸨░░░░░░░░░░░░░░░░░░⸩ ⠏ :
The following dependencies are satisfied by their declared version range, but the installed versions are behind. You can install the latest versions without modifying your package file by using npm update. If you want to update the dependencies in your package file anyway, run ncu -a.
truffle ^4.1.3 → ^4.1.5
zeppelin-solidity ^1.7.0 → ^1.8.0
$ ncu -a
ここで package.jsonの更新を確認した。
このままnpm install を実行したらエラーになってしまったので
めんどいから 削除再インストールした。
$ rm -rf node_modules package-lock.json
$ npm install
ま〜他の記事ではncu -u ってのがあったけど、更新されなかった。
pakage-lock.jsonとかその辺りの影響があったのかも。
目的は達成できたのでよし。