Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package.json 中依赖版本不同导致的问题 #93

Open
yubaoquan opened this issue Aug 1, 2022 · 0 comments
Open

package.json 中依赖版本不同导致的问题 #93

yubaoquan opened this issue Aug 1, 2022 · 0 comments

Comments

@yubaoquan
Copy link
Owner

背景

工程中依赖 A, B 和 vue

A 依赖 vue@^2.6.12
B 依赖 vue@^2.6.14
工程本身依赖 [email protected]

这样, 在工程中 yarn之后, A 内部的 node_modules 中出现了 [email protected]

由于A是基于2.6.x开发的, 现在使用的 vue 2.7.x 版本导致A运行时报错

为什么A没有使用工程node_modules中的vue, 而是自己内部的node_modules安装了另外的vue呢?

###原因

因为工程本身的vue写死了版本2.6.12, 而A依赖的vue写法前面加了^, 代表安装最新的minor版本, 于是安装时给A内部安了[email protected]

解决

在工程中的vue版本号签名加上~, 工程依赖的A, B中的package.json中对vue的依赖版本号也改成~开头, 这样只会升patch版本号, 避免了[email protected]升到[email protected]的问题

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant