首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    Hutool-5.8.0.M1 发布,尝试里程碑发布

    • 【db 】 【不向下兼容 】增加MongoDB4.x支持返回MongoClient变更(pr#568@Gitee) • 【json 】 【可能兼容问题】修改JSONObject结构,继承自MapWrapper • 【core 】 【可能兼容问题】BeanCopier重构,新建XXXCopier,删除XXXValueProvider • 【core 】 【可能兼容问题】URLEncoder废弃,URLEncoderUtil使用RFC3986 • 【core 】 【可能兼容问题】Base32分离编码和解码,以便减少数据加载,支持Hex模式 • 【core 】 【可能兼容问题】Base58分离编码和解码 • 【core 】 【可能兼容问题】Base62分离编码和解码,增加inverted模式支持 • 【core 】 【兼容问题 】PunyCode参数由String改为Charsequence • 【cron 】 【可能兼容问题】SimpleValueParser改名为AbsValueParser,改为abstract • 【poi 】 【可能兼容问题】ExcelUtil.getBigWriter返回值改为BigExcelWriter • 【core 】 【可能兼容问题】Opt.ofEmptyAble参数由List改为Collection子类(pr#580@Gitee) • 【json 】 【可能兼容问题】JSON转Bean时,使用JSON本身的相关设置,而非默认(issue#2212@Github) • 【json 】 【可能兼容问题】JSONConfig中isOrder废弃,默认全部有序

    03

    关于 npm 和 yarn 总结一些细节

    Searches the local package tree and attempts to simplify the overall structure by moving dependencies further up the tree, where they can be more effectively shared by multiple dependent packages. For example, consider this dependency graph: a +-- b <-- depends on c@1.0.x | `-- c@1.0.3 `-- d <-- depends on c@~1.0.9 `-- c@1.0.10 In this case, npm dedupe will transform the tree to: a +-- b +-- d `-- c@1.0.10 Because of the hierarchical nature of node's module lookup, b and d will both get their dependency met by the single c package at the root level of the tree. 复制代码 // npm7 以后微调 // 在保持上述原则的基础上,升级了如下细微的规则: In some cases, you may have a dependency graph like this: a +-- b <-- depends on c@1.0.x +-- c@1.0.3 `-- d <-- depends on c@1.x `-- c@1.9.9 During the installation process, the c@1.0.3 dependency for b was placed in the root of the tree. Though d's dependency on c@1.x could have been satisfied by c@1.0.3, the newer c@1.9.0 dependency was used, because npm favors updates by default, even when doing so causes duplication. Running npm dedupe will cause npm to note the duplication and re-evaluate, deleting the nested c module, because the one in the root is sufficient. To prefer deduplication over novelty during the installation process, run npm install --prefer-dedupe or npm config set prefer-dedupe true. Arguments are ignored. Dedupe always acts on the entire tree. Note that this operation transforms the dependency tree, but will never result in new modules being installed. Using npm find-dupes will run the command in --dry-run mode. Note: npm dedupe will never update the semver values of direct dependencies in your project package.json, if you want to update values in package.json you can run: npm update --save instead.During the installation process, the c@1.0.3 dependency for b was placed in the root of the tree. Though d's dependency on c@1.x could have been satisfied by c@1.0.3

    04
    领券