博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Node.js]23. Level 4: Semantic versioning
阅读量:6584 次
发布时间:2019-06-24

本文共 448 字,大约阅读时间需要 1 分钟。

Update the versions on your dependencies to be a little more flexible, adding the ~ in front of your versions.

package.json{  "name": "My Awesome Node App",  "version": "1",  "dependencies": {    "connect": "2.2.1",    "underscore": "1.3.3"  }}

 

Answer:

{  "name": "My Awesome Node App",  "version": "1",  "dependencies": {    "connect": "~2.2.1",    "underscore": "~1.3.3"  }}//~2.2.1 --> >=2.2.1 > 2.3.0//~2.2 --> >=2.2 < 3.0.0//~2 --> >=2 < 3.0.0

 

转载地址:http://vyxno.baihongyu.com/

你可能感兴趣的文章
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
Ubuntu上运行Blender,在控制台上查看运行结果
查看>>
怎么检查网站的死链接呢?
查看>>
scrapy爬虫框架实例一,爬取自己博客
查看>>
React是UI的未来吗?
查看>>
中国人社部:2018年15个省(区、市)调整最低工资标准
查看>>
手把手教你通过Thrift 访问ApsaraDB for HBase
查看>>
MacOS安装MySQL 报错
查看>>
Java知识点总结(反射-反射操作泛型)
查看>>
Vue+webpack+Element 兼容问题总结
查看>>
《软技能》读书笔记(下)
查看>>
textarea文域高度自适应
查看>>
go语言renderer包代码分析
查看>>
【Scala谜题】成员声明的位置
查看>>
git最最最最...常用命令
查看>>
复杂recyclerView封装库
查看>>
见微知著 —— Redis 字符串内部结构源码分析
查看>>
Command './js-ant' failed to execute
查看>>
阿里云NFS NAS数据保护实战
查看>>