UNPKG

7.91 kBMarkdownView Raw
1# @rollup/plugin-node-resolve ChangeLog
2
3## v7.1.0
4
5_2020-02-01_
6
7### Updates
8
9- refactor: clean codebase and fix external warnings (#155)
10
11## v7.0.0
12
13_2020-01-07_
14
15### Breaking Changes
16
17- feat: dedupe by package name (#99)
18
19## v6.1.0
20
21_2020-01-04_
22
23### Bugfixes
24
25- fix: allow deduplicating custom module dirs (#101)
26
27### Features
28
29- feat: add rootDir option (#98)
30
31### Updates
32
33- docs: improve doc related to mainFields (#138)
34
35## 6.0.0
36
37_2019-11-25_
38
39- **Breaking:** Minimum compatible Rollup version is 1.20.0
40- **Breaking:** Minimum supported Node version is 8.0.0
41- Published as @rollup/plugin-node-resolve
42
43## 5.2.1 (unreleased)
44
45- add missing MIT license file ([#233](https://github.com/rollup/rollup-plugin-node-resolve/pull/233) by @kenjiO)
46- Fix incorrect example of config ([#239](https://github.com/rollup/rollup-plugin-node-resolve/pull/240) by @myshov)
47- Fix typo in readme ([#240](https://github.com/rollup/rollup-plugin-node-resolve/pull/240) by @LinusU)
48
49## 5.2.0 (2019-06-29)
50
51- dedupe accepts a function ([#225](https://github.com/rollup/rollup-plugin-node-resolve/pull/225) by @manucorporat)
52
53## 5.1.1 (2019-06-29)
54
55- Move Rollup version check to buildStart hook to avoid issues ([#232](https://github.com/rollup/rollup-plugin-node-resolve/pull/232) by @lukastaegert)
56
57## 5.1.0 (2019-06-22)
58
59- Fix path fragment inputs ([#229](https://github.com/rollup/rollup-plugin-node-resolve/pull/229) by @bterlson)
60
61## 5.0.4 (2019-06-22)
62
63- Treat sideEffects array as inclusion list ([#227](https://github.com/rollup/rollup-plugin-node-resolve/pull/227) by @mikeharder)
64
65## 5.0.3 (2019-06-16)
66
67- Make empty.js a virtual module ([#224](https://github.com/rollup/rollup-plugin-node-resolve/pull/224) by @manucorporat)
68
69## 5.0.2 (2019-06-13)
70
71- Support resolve 1.11.1, add built-in test ([#223](https://github.com/rollup/rollup-plugin-node-resolve/pull/223) by @bterlson)
72
73## 5.0.1 (2019-05-31)
74
75- Update to resolve@1.11.0 for better performance ([#220](https://github.com/rollup/rollup-plugin-node-resolve/pull/220) by @keithamus)
76
77## 5.0.0 (2019-05-15)
78
79- Replace bublé with babel, update dependencies ([#216](https://github.com/rollup/rollup-plugin-node-resolve/pull/216) by @mecurc)
80- Handle module side-effects ([#219](https://github.com/rollup/rollup-plugin-node-resolve/pull/219) by @lukastaegert)
81
82### Breaking Changes
83
84- Requires at least rollup@1.11.0 to work (v1.12.0 for module side-effects to be respected)
85- If used with rollup-plugin-commonjs, it should be at least v10.0.0
86
87## 4.2.4 (2019-05-11)
88
89- Add note on builtins to Readme ([#215](https://github.com/rollup/rollup-plugin-node-resolve/pull/215) by @keithamus)
90- Add issue templates ([#217](https://github.com/rollup/rollup-plugin-node-resolve/pull/217) by @mecurc)
91- Improve performance by caching `isDir` ([#218](https://github.com/rollup/rollup-plugin-node-resolve/pull/218) by @keithamus)
92
93## 4.2.3 (2019-04-11)
94
95- Fix ordering of jsnext:main when using the jsnext option ([#209](https://github.com/rollup/rollup-plugin-node-resolve/pull/209) by @lukastaegert)
96
97## 4.2.2 (2019-04-10)
98
99- Fix TypeScript typings (rename and export Options interface) ([#206](https://github.com/rollup/rollup-plugin-node-resolve/pull/206) by @Kocal)
100- Fix mainfields typing ([#207](https://github.com/rollup/rollup-plugin-node-resolve/pull/207) by @nicolashenry)
101
102## 4.2.1 (2019-04-06)
103
104- Respect setting the deprecated fields "module", "main", and "jsnext" ([#204](https://github.com/rollup/rollup-plugin-node-resolve/pull/204) by @nick-woodward)
105
106## 4.2.0 (2019-04-06)
107
108- Add new mainfields option ([#182](https://github.com/rollup/rollup-plugin-node-resolve/pull/182) by @keithamus)
109- Added dedupe option to prevent bundling the same package multiple times ([#201](https://github.com/rollup/rollup-plugin-node-resolve/pull/182) by @sormy)
110
111## 4.1.0 (2019-04-05)
112
113- Add TypeScript typings ([#189](https://github.com/rollup/rollup-plugin-node-resolve/pull/189) by @NotWoods)
114- Update dependencies ([#202](https://github.com/rollup/rollup-plugin-node-resolve/pull/202) by @lukastaegert)
115
116## 4.0.1 (2019-02-22)
117
118- Fix issue when external modules are specified in `package.browser` ([#143](https://github.com/rollup/rollup-plugin-node-resolve/pull/143) by @keithamus)
119- Fix `package.browser` mapping issue when `false` is specified ([#183](https://github.com/rollup/rollup-plugin-node-resolve/pull/183) by @allex)
120
121## 4.0.0 (2018-12-09)
122
123This release will support rollup@1.0
124
125### Features
126
127- Resolve modules used to define manual chunks ([#185](https://github.com/rollup/rollup-plugin-node-resolve/pull/185) by @mcshaman)
128- Update dependencies and plugin hook usage ([#187](https://github.com/rollup/rollup-plugin-node-resolve/pull/187) by @lukastaegert)
129
130## 3.4.0 (2018-09-04)
131
132This release now supports `.mjs` files by default
133
134### Features
135
136- feat: Support .mjs files by default (https://github.com/rollup/rollup-plugin-node-resolve/pull/151, by @leebyron)
137
138## 3.3.0 (2018-03-17)
139
140This release adds the `only` option
141
142### New Features
143
144- feat: add `only` option (#83; @arantes555)
145
146### Docs
147
148- docs: correct description of `jail` option (#120; @GeorgeTaveras1231)
149
150## 3.2.0 (2018-03-07)
151
152This release caches reading/statting of files, to improve speed.
153
154### Performance Improvements
155
156- perf: cache file stats/reads (#126; @keithamus)
157
158## 3.0.4 (unreleased)
159
160- Update lockfile [#137](https://github.com/rollup/rollup-plugin-node-resolve/issues/137)
161- Update rollup dependency [#138](https://github.com/rollup/rollup-plugin-node-resolve/issues/138)
162- Enable installation from Github [#142](https://github.com/rollup/rollup-plugin-node-resolve/issues/142)
163
164## 3.0.3
165
166- Fix [#130](https://github.com/rollup/rollup-plugin-node-resolve/issues/130) and [#131](https://github.com/rollup/rollup-plugin-node-resolve/issues/131)
167
168## 3.0.2
169
170- Ensure `pkg.browser` is an object if necessary ([#129](https://github.com/rollup/rollup-plugin-node-resolve/pull/129))
171
172## 3.0.1
173
174- Remove `browser-resolve` dependency ([#127](https://github.com/rollup/rollup-plugin-node-resolve/pull/127))
175
176## 3.0.0
177
178- [BREAKING] Remove `options.skip` ([#90](https://github.com/rollup/rollup-plugin-node-resolve/pull/90))
179- Add `modulesOnly` option ([#96](https://github.com/rollup/rollup-plugin-node-resolve/pull/96))
180
181## 2.1.1
182
183- Prevent `jail` from breaking builds on Windows ([#93](https://github.com/rollup/rollup-plugin-node-resolve/issues/93))
184
185## 2.1.0
186
187- Add `jail` option ([#53](https://github.com/rollup/rollup-plugin-node-resolve/pull/53))
188- Add `customResolveOptions` option ([#79](https://github.com/rollup/rollup-plugin-node-resolve/pull/79))
189- Support symlinked packages ([#82](https://github.com/rollup/rollup-plugin-node-resolve/pull/82))
190
191## 2.0.0
192
193- Add support `module` field in package.json as an official alternative to jsnext
194
195## 1.7.3
196
197- Error messages are more descriptive ([#50](https://github.com/rollup/rollup-plugin-node-resolve/issues/50))
198
199## 1.7.2
200
201- Allow entry point paths beginning with ./
202
203## 1.7.1
204
205- Return a `name`
206
207## 1.7.0
208
209- Allow relative IDs to be external ([#32](https://github.com/rollup/rollup-plugin-node-resolve/pull/32))
210
211## 1.6.0
212
213- Skip IDs containing null character
214
215## 1.5.0
216
217- Prefer built-in options, but allow opting out ([#28](https://github.com/rollup/rollup-plugin-node-resolve/pull/28))
218
219## 1.4.0
220
221- Pass `options.extensions` through to `node-resolve`
222
223## 1.3.0
224
225- `skip: true` skips all packages that don't satisfy the `main` or `jsnext` options ([#16](https://github.com/rollup/rollup-plugin-node-resolve/pull/16))
226
227## 1.2.1
228
229- Support scoped packages in `skip` option ([#15](https://github.com/rollup/rollup-plugin-node-resolve/issues/15))
230
231## 1.2.0
232
233- Support `browser` field ([#8](https://github.com/rollup/rollup-plugin-node-resolve/issues/8))
234- Get tests to pass on Windows
235
236## 1.1.0
237
238- Use node-resolve to handle various corner cases
239
240## 1.0.0
241
242- Add ES6 build, use Rollup 0.20.0
243
244## 0.1.0
245
246- First release