内容简介:Yarn v1.12.1 发布了,这是一个 Facebook 推出的 JavaScript 包管理器。该版本主要是修复了 bug,但也包括功能改进和新增功能,具体如下: Ensures the engine check is ran before showing the UI for upgrade-...
Yarn v1.12.1 发布了,这是一个 Facebook 推出的 JavaScript 包管理器。该版本主要是修复了 bug,但也包括功能改进和新增功能,具体如下:
Ensures the engine check is ran before showing the UI for
upgrade-interactive
#6536 - Orta TheroxRestores Node v4 support by downgrading
cli-table3
#6535 - Mark StaceyPrevents infinite loop when parsing corrupted lockfiles with unterminated strings #4965 - Ryan Hendrickson
Environment variables now have to start with
YARN_
(instead of just contain it) to be considered #6518 - Michael GmelinFixes the
extensions
option when used byresolveRequest
#6479 - Maël NisonFixes handling of empty string entries for
bin
in package.json #6515 - Ryan BurrowsAdds support for basic auth for registries with paths, such as artifactory #5322 - Karolis Narkevicius
Adds 2FA (Two Factor Authentication) support to publish & alike #6555 - Krzysztof Zbudniewek
Fixes how the
files
property is interpreted to bring it in line with npm #6562 - Bertrand MarronFixes Yarn invocations on Darwin when the
yarn
binary was symlinked #6568 - Hidde BoomsmaFixes
require.resolve
when used together with thepaths
option #6565 - Maël Nison
Yarn 是 Facebook 推出的 JavaScript 包管理器,旨在提供 npm 之外的另一种选择方案。Yarn 具有极佳的伸缩性,可以支持成千上万个直接或间接的包依赖。Yarn 的设计初衷是保证稳定性、弹性和高性能。
那么 Yarn 和 npm 有什么不同呢?两者最大的不同在于安装包的方式,Yarn 用到了 lockfiles 和确定性算法。Lockfile 会把安装的包版本进行锁定,保证了 node_modules 目录在不同设备上的安装结果是一致的,同时支持并行操作,大大加快安装进程。此外,Yarn 还声明同时兼容 npm 和 Bower,支持两个仓库混合使用,同时支持包的离线安装(只要你曾经安装过这个包)。
Yarn 1.0 的发布时间是 2017 年 9 月,可点此查看更新内容。
Yarn 1.12.1 源码下载 https://github.com/yarnpkg/yarn/releases/tag/v1.12.1
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 若依管理系统 1.0.2 发布,新增部门管理
- 若依管理系统 1.0.3 发布,新增用户管理
- 若依管理系统 1.0.4 发布,新增角色管理
- 若依管理系统 1.0.5 发布,新增菜单管理
- 若依管理系统 1.0.6 发布,新增字典管理
- 若依管理系统 1.0.7 发布,新增岗位管理
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python标准库
Doug Hellmann / 刘炽 / 机械工业出版社华章公司 / 2012-6-15 / 139.00元
本书由资深Python专家亲自执笔,Python语言的核心开发人员作序推荐,权威性毋庸置疑。 对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案,所以本书是所有Python程序员都必备的工具书!本书以案例驱动的方式讲解了标准库中一百多个模块的使用方法(如何工作)和工作原理(为什么要这样工作),比标准库的官方文档更容易理解(一个简单的示例比一份手册......一起来看看 《Python标准库》 这本书的介绍吧!