We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
我有foo和bar两个包,都不在edp registry上,使用edp import [tag url]管理,现在foo要依赖bar,那么在foo的package.json中要怎么写?
foo
bar
edp import [tag url]
package.json
The text was updated successfully, but these errors were encountered:
npm 的 package.json 貌似是可以配 { type: 'git', url: '...' } 这样
Sorry, something went wrong.
直接写 bar: 'xxx.tar.gz'
刚沟通这样,因为bar会升级,升级后的url是不一样的,所以其实foo只能依赖特定一个版本,而不能是某个版本区间
这个问题我原本想使用方能不能通过一些override技术来指定某些包的地址,这样把版本决定权交到项目里去
不过看来会是个比较长远的话题
No branches or pull requests
我有
foo
和bar
两个包,都不在edp registry上,使用edp import [tag url]
管理,现在foo
要依赖bar
,那么在foo
的package.json
中要怎么写?The text was updated successfully, but these errors were encountered: