GitHub上で先日Dependency alertが届きました。Locashのバージョンが古いのでアップデートが必要なようです。(添付画像参照)
npmコマンドnpm i --save lodash
を実行した所、2つ目の添付画像のように+ lodash@4.17.19
と表示されていたのでうまくいったと思ったのですが、
GitHubに戻って確認してみたらまだ1枚目の添付画像と同じアラートが残っていました。アップデートがGitHub上で反映されていないのかなと思って自分のローカル環境でpackage-lock.json
ファイルをVisual Studio Codeで開いて確認してみたのですが、そこでもバージョンが4.17.13
とAlertで要求されていた基準を下回ったままでした。
なぜコマンド上ではアップデートができたように見えるのに実際には最新版にアップデートされていないのでしょうか?
【追記1】
package-lock-onlyをやってみた時のスクリーンショットです。
【追記2】
package.json
{ "name": "pictionarizer-ui", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.11.1", "@testing-library/react": "^10.4.7", "@testing-library/user-event": "^12.0.15", "@types/yup": "^0.29.3", "axios": "^0.19.2", "formik": "^2.1.5", "lodash": "^4.17.19", "lodash.update": "^4.10.2", "moment": "^2.27.0", "react": "^16.13.1", "react-dom": "^16.13.1", "react-router-dom": "^5.2.0", "react-scripts": "3.4.1", "react-toastify": "^6.0.8", "websocket-extensions": "^0.1.4", "yup": "^0.29.1" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": "react-app" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "devDependencies": { "@types/jest": "^26.0.7", "@types/node": "^14.0.26", "@types/react": "^16.9.43", "@types/react-dom": "^16.9.8", "@types/react-router-dom": "^5.1.5", "typescript": "^3.9.7" } }
package-lock.json
"@babel/core": { "version": "7.9.0", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/generator": "^7.9.0", "@babel/helper-module-transforms": "^7.9.0", "@babel/helpers": "^7.9.0", "@babel/parser": "^7.9.0", "@babel/template": "^7.8.6", "@babel/traverse": "^7.9.0", "@babel/types": "^7.9.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.1", "json5": "^2.1.2", "lodash": "^4.17.13", "resolve": "^1.3.2", "semver": "^5.4.1", "source-map": "^0.5.0" }, .....
https://github.com/Shinichi1125/Pictionarizer/blob/master/pictionarizer-ui/package-lock.json
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/27 16:32
2020/07/27 16:44
2020/07/27 16:56
2020/07/27 17:30
2020/07/27 17:56
2020/07/28 01:45
2020/07/28 09:39
2020/07/28 13:05
2020/07/28 18:00