mirror of https://github.com/jkjoy/sunpeiwen.git
10 KiB
10 KiB
@rollup/plugin-node-resolve ChangeLog
v11.2.1
2021-03-26
Bugfixes
- fix: fs.exists is incorrectly promisified (#835)
v11.2.0
2021-02-14
Features
- feat: add
ignoreSideEffectsForRoot
option (#694)
Updates
- chore: mark
url
as an external and throw on warning (#783) - docs: clearer "Resolving Built-Ins" doc (#782)
v11.1.1
2021-01-29
Bugfixes
- fix: only log last resolve error (#750)
Updates
- docs: add clarification on the order of package entrypoints (#768)
v11.1.0
2021-01-15
Features
- feat: support pkg imports and export array (#693)
v11.0.1
2020-12-14
Bugfixes
- fix: export map specificity (#675)
- fix: add missing type import (#668)
Updates
- docs: corrected word "yse" to "use" (#723)
v11.0.0
2020-11-30
Breaking Changes
- refactor!: simplify builtins and remove
customResolveOptions
(#656) - feat!: Mark built-ins as external (#627)
- feat!: support package entry points (#540)
Bugfixes
- fix: refactor handling builtins, do not log warning if no local version (#637)
Updates
- docs: fix import statements in examples in README.md (#646)
v10.0.0
2020-10-27
Breaking Changes
- fix!: resolve hash in path (#588)
Bugfixes
- fix: do not ignore exceptions (#564)
v9.0.0
2020-08-13
Breaking Changes
- chore: update dependencies (e632469)
Updates
- refactor: remove deep-freeze from dependencies (#529)
- chore: clean up changelog (84dfddb)
v8.4.0
2020-07-12
Features
- feat: preserve search params and hashes (#487)
- feat: support .js imports in TypeScript (#480)
Updates
- docs: fix named export use in readme (#456)
- docs: correct mainFields valid values (#469)
v8.1.0
2020-06-22
Features
- feat: add native node es modules support (#413)
v8.0.1
2020-06-05
Bugfixes
- fix: handle nested entry modules with the resolveOnly option (#430)
v8.0.0
2020-05-20
Breaking Changes
- feat: Add default export (#361)
- feat: export defaults (#301)
Bugfixes
- fix: resolve local files if
resolveOption
is set (#337)
Updates
- docs: correct misspelling (#343)
v7.1.3
2020-04-12
Bugfixes
- fix: resolve symlinked entry point properly (#291)
v7.1.2
2020-04-12
Updates
- docs: fix url (#289)
v7.1.1
2020-02-03
Bugfixes
- fix: main fields regression (#196)
v7.1.0
2020-02-01
Updates
- refactor: clean codebase and fix external warnings (#155)
v7.0.0
2020-01-07
Breaking Changes
- feat: dedupe by package name (#99)
v6.1.0
2020-01-04
Bugfixes
- fix: allow deduplicating custom module dirs (#101)
Features
- feat: add rootDir option (#98)
Updates
- docs: improve doc related to mainFields (#138)
6.0.0
2019-11-25
- Breaking: Minimum compatible Rollup version is 1.20.0
- Breaking: Minimum supported Node version is 8.0.0
- Published as @rollup/plugin-node-resolve
5.2.1 (unreleased)
- add missing MIT license file (#233 by @kenjiO)
- Fix incorrect example of config (#239 by @myshov)
- Fix typo in readme (#240 by @LinusU)
5.2.0 (2019-06-29)
- dedupe accepts a function (#225 by @manucorporat)
5.1.1 (2019-06-29)
- Move Rollup version check to buildStart hook to avoid issues (#232 by @lukastaegert)
5.1.0 (2019-06-22)
- Fix path fragment inputs (#229 by @bterlson)
5.0.4 (2019-06-22)
- Treat sideEffects array as inclusion list (#227 by @mikeharder)
5.0.3 (2019-06-16)
- Make empty.js a virtual module (#224 by @manucorporat)
5.0.2 (2019-06-13)
- Support resolve 1.11.1, add built-in test (#223 by @bterlson)
5.0.1 (2019-05-31)
- Update to resolve@1.11.0 for better performance (#220 by @keithamus)
5.0.0 (2019-05-15)
- Replace bublé with babel, update dependencies (#216 by @mecurc)
- Handle module side-effects (#219 by @lukastaegert)
Breaking Changes
- Requires at least rollup@1.11.0 to work (v1.12.0 for module side-effects to be respected)
- If used with rollup-plugin-commonjs, it should be at least v10.0.0
4.2.4 (2019-05-11)
- Add note on builtins to Readme (#215 by @keithamus)
- Add issue templates (#217 by @mecurc)
- Improve performance by caching
isDir
(#218 by @keithamus)
4.2.3 (2019-04-11)
- Fix ordering of jsnext:main when using the jsnext option (#209 by @lukastaegert)
4.2.2 (2019-04-10)
- Fix TypeScript typings (rename and export Options interface) (#206 by @Kocal)
- Fix mainfields typing (#207 by @nicolashenry)
4.2.1 (2019-04-06)
- Respect setting the deprecated fields "module", "main", and "jsnext" (#204 by @nick-woodward)
4.2.0 (2019-04-06)
- Add new mainfields option (#182 by @keithamus)
- Added dedupe option to prevent bundling the same package multiple times (#201 by @sormy)
4.1.0 (2019-04-05)
4.0.1 (2019-02-22)
- Fix issue when external modules are specified in
package.browser
(#143 by @keithamus) - Fix
package.browser
mapping issue whenfalse
is specified (#183 by @allex)
4.0.0 (2018-12-09)
This release will support rollup@1.0
Features
- Resolve modules used to define manual chunks (#185 by @mcshaman)
- Update dependencies and plugin hook usage (#187 by @lukastaegert)
3.4.0 (2018-09-04)
This release now supports .mjs
files by default
Features
- feat: Support .mjs files by default (https://github.com/rollup/rollup-plugin-node-resolve/pull/151, by @leebyron)
3.3.0 (2018-03-17)
This release adds the only
option
New Features
- feat: add
only
option (#83; @arantes555)
Docs
- docs: correct description of
jail
option (#120; @GeorgeTaveras1231)
3.2.0 (2018-03-07)
This release caches reading/statting of files, to improve speed.
Performance Improvements
- perf: cache file stats/reads (#126; @keithamus)
3.0.4 (unreleased)
3.0.3
3.0.2
- Ensure
pkg.browser
is an object if necessary (#129)
3.0.1
- Remove
browser-resolve
dependency (#127)
3.0.0
2.1.1
- Prevent
jail
from breaking builds on Windows (#93)
2.1.0
2.0.0
- Add support
module
field in package.json as an official alternative to jsnext
1.7.3
- Error messages are more descriptive (#50)
1.7.2
- Allow entry point paths beginning with ./
1.7.1
- Return a
name
1.7.0
- Allow relative IDs to be external (#32)
1.6.0
- Skip IDs containing null character
1.5.0
- Prefer built-in options, but allow opting out (#28)
1.4.0
- Pass
options.extensions
through tonode-resolve
1.3.0
skip: true
skips all packages that don't satisfy themain
orjsnext
options (#16)
1.2.1
- Support scoped packages in
skip
option (#15)
1.2.0
- Support
browser
field (#8) - Get tests to pass on Windows
1.1.0
- Use node-resolve to handle various corner cases
1.0.0
- Add ES6 build, use Rollup 0.20.0
0.1.0
- First release