- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试将 Visual Studio 中的 angular 项目更新为特定版本的 angular。
我在关注 this tutorial我做了一些不同的事情,因为在本教程中,我获得了最新的 angular 版本,我特别想要 angular 的第 6 版。
为此,我确实运行了 npm install -g @angular/cli@6.2.9
而不是教程一( npm install -g npm-check-updates
)
在我运行了 ncu -u
之后无论如何,就像教程一样。
最后我还是得到了版本 7 的 package.json,这不是我想要的。
我知道 ncu
意味着 npm-check-updates
, 熟悉 -g
这是全局安装。究竟是做什么的ncu -u
确实如此,是更新了吗?
所以它忽略了我的 6 版本并继续使用最后一个?
我应该在这里做什么?我想查看我的包 json 上的更改,但是对于 6 而不是 7,但是这个命令是针对 7 的。
就像教程中的图像一样,您可以在命令行/PowerShell 中看到前后(我在管理员中使用了 PowerShell,如教程所述)。
我试过用这个
https://update.angular.io/
这仍然让我使用了第 7 版......而不是我在下拉列表中选择的 6.1。
看图
和我的 package.json 现在
最佳答案
正如 ncu 包 description 中所述
ncu -u upgrades your package.json dependencies to the latest versions, ignoring specified versions.
npm-check-updates maintains your existing semantic versioning policies, i.e., it will upgrade "express": "^4.0.0" to "express": "^5.0.0".
It only modifies your package.json file. Run npm install to update your installed packages and package-lock.json.
There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally.
The react-scripts package provided by Create React App requires a dependency:
"babel-eslint": "10.0.1"
Don't try to install it manually: your package manager does it automatically. However, a different version of babel-eslint was detected higher up in the tree:
..ClientApp\node_modules\babel-eslint (version: 10.0.2)
ncu -u
npm i babel-eslint@10.0.1
npm ls [conflicting_package]
npm ls babel-eslint
+-- babel-eslint@10.0.2 - explicit dependency in your package.json on babel-eslint.
`-- react-scripts@3.0.1 - explicit dependency in your package.json on react-scripts.
`-- babel-eslint@10.0.1 - implicit dependency with different version
关于angular - 命令 ncu -u 到底是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54364751/
我一直在尝试将 Visual Studio 中的 angular 项目更新为特定版本的 angular。 我在关注 this tutorial我做了一些不同的事情,因为在本教程中,我获得了最新的 an
我是一名优秀的程序员,十分优秀!