UNPKG

10.9 kBMarkdownView Raw
1# @rollup/plugin-node-resolve ChangeLog
2
3## v13.0.3
4
5_2021-07-24_
6
7### Bugfixes
8
9- fix
10
11## v13.0.2
12
13_2021-07-15_
14
15### Bugfixes
16
17- fix
18
19## v13.0.1
20
21_2021-07-15_
22
23### Updates
24
25- docs: Document how to get Node.js exports resolution (#884)
26
27## v13.0.0
28
29_2021-05-04_
30
31### Breaking Changes
32
33- fix!: mark module as external if resolved module is external (#799)
34
35### Features
36
37- feat: Follow up to #843, refining exports and browser field interaction (#866)
38
39## v12.0.0
40
41_2021-05-04_
42
43### Breaking Changes
44
45- fix!: mark module as external if resolved module is external (#799)
46
47### Features
48
49- feat: Follow up to #843, refining exports and browser field interaction (#866)
50
51## v11.2.1
52
53_2021-03-26_
54
55### Bugfixes
56
57- fix: fs.exists is incorrectly promisified (#835)
58
59## v11.2.0
60
61_2021-02-14_
62
63### Features
64
65- feat: add `ignoreSideEffectsForRoot` option (#694)
66
67### Updates
68
69- chore: mark `url` as an external and throw on warning (#783)
70- docs: clearer "Resolving Built-Ins" doc (#782)
71
72## v11.1.1
73
74_2021-01-29_
75
76### Bugfixes
77
78- fix: only log last resolve error (#750)
79
80### Updates
81
82- docs: add clarification on the order of package entrypoints (#768)
83
84## v11.1.0
85
86_2021-01-15_
87
88### Features
89
90- feat: support pkg imports and export array (#693)
91
92## v11.0.1
93
94_2020-12-14_
95
96### Bugfixes
97
98- fix: export map specificity (#675)
99- fix: add missing type import (#668)
100
101### Updates
102
103- docs: corrected word "yse" to "use" (#723)
104
105## v11.0.0
106
107_2020-11-30_
108
109### Breaking Changes
110
111- refactor!: simplify builtins and remove `customResolveOptions` (#656)
112- feat!: Mark built-ins as external (#627)
113- feat!: support package entry points (#540)
114
115### Bugfixes
116
117- fix: refactor handling builtins, do not log warning if no local version (#637)
118
119### Updates
120
121- docs: fix import statements in examples in README.md (#646)
122
123## v10.0.0
124
125_2020-10-27_
126
127### Breaking Changes
128
129- fix!: resolve hash in path (#588)
130
131### Bugfixes
132
133- fix: do not ignore exceptions (#564)
134
135## v9.0.0
136
137_2020-08-13_
138
139### Breaking Changes
140
141- chore: update dependencies (e632469)
142
143### Updates
144
145- refactor: remove deep-freeze from dependencies (#529)
146- chore: clean up changelog (84dfddb)
147
148## v8.4.0
149
150_2020-07-12_
151
152### Features
153
154- feat: preserve search params and hashes (#487)
155- feat: support .js imports in TypeScript (#480)
156
157### Updates
158
159- docs: fix named export use in readme (#456)
160- docs: correct mainFields valid values (#469)
161
162## v8.1.0
163
164_2020-06-22_
165
166### Features
167
168- feat: add native node es modules support (#413)
169
170## v8.0.1
171
172_2020-06-05_
173
174### Bugfixes
175
176- fix: handle nested entry modules with the resolveOnly option (#430)
177
178## v8.0.0
179
180_2020-05-20_
181
182### Breaking Changes
183
184- feat: Add default export (#361)
185- feat: export defaults (#301)
186
187### Bugfixes
188
189- fix: resolve local files if `resolveOption` is set (#337)
190
191### Updates
192
193- docs: correct misspelling (#343)
194
195## v7.1.3
196
197_2020-04-12_
198
199### Bugfixes
200
201- fix: resolve symlinked entry point properly (#291)
202
203## v7.1.2
204
205_2020-04-12_
206
207### Updates
208
209- docs: fix url (#289)
210
211## v7.1.1
212
213_2020-02-03_
214
215### Bugfixes
216
217- fix: main fields regression (#196)
218
219## v7.1.0
220
221_2020-02-01_
222
223### Updates
224
225- refactor: clean codebase and fix external warnings (#155)
226
227## v7.0.0
228
229_2020-01-07_
230
231### Breaking Changes
232
233- feat: dedupe by package name (#99)
234
235## v6.1.0
236
237_2020-01-04_
238
239### Bugfixes
240
241- fix: allow deduplicating custom module dirs (#101)
242
243### Features
244
245- feat: add rootDir option (#98)
246
247### Updates
248
249- docs: improve doc related to mainFields (#138)
250
251## 6.0.0
252
253_2019-11-25_
254
255- **Breaking:** Minimum compatible Rollup version is 1.20.0
256- **Breaking:** Minimum supported Node version is 8.0.0
257- Published as @rollup/plugin-node-resolve
258
259## 5.2.1 (unreleased)
260
261- add missing MIT license file ([#233](https://github.com/rollup/rollup-plugin-node-resolve/pull/233) by @kenjiO)
262- Fix incorrect example of config ([#239](https://github.com/rollup/rollup-plugin-node-resolve/pull/240) by @myshov)
263- Fix typo in readme ([#240](https://github.com/rollup/rollup-plugin-node-resolve/pull/240) by @LinusU)
264
265## 5.2.0 (2019-06-29)
266
267- dedupe accepts a function ([#225](https://github.com/rollup/rollup-plugin-node-resolve/pull/225) by @manucorporat)
268
269## 5.1.1 (2019-06-29)
270
271- Move Rollup version check to buildStart hook to avoid issues ([#232](https://github.com/rollup/rollup-plugin-node-resolve/pull/232) by @lukastaegert)
272
273## 5.1.0 (2019-06-22)
274
275- Fix path fragment inputs ([#229](https://github.com/rollup/rollup-plugin-node-resolve/pull/229) by @bterlson)
276
277## 5.0.4 (2019-06-22)
278
279- Treat sideEffects array as inclusion list ([#227](https://github.com/rollup/rollup-plugin-node-resolve/pull/227) by @mikeharder)
280
281## 5.0.3 (2019-06-16)
282
283- Make empty.js a virtual module ([#224](https://github.com/rollup/rollup-plugin-node-resolve/pull/224) by @manucorporat)
284
285## 5.0.2 (2019-06-13)
286
287- Support resolve 1.11.1, add built-in test ([#223](https://github.com/rollup/rollup-plugin-node-resolve/pull/223) by @bterlson)
288
289## 5.0.1 (2019-05-31)
290
291- Update to resolve@1.11.0 for better performance ([#220](https://github.com/rollup/rollup-plugin-node-resolve/pull/220) by @keithamus)
292
293## 5.0.0 (2019-05-15)
294
295- Replace bublé with babel, update dependencies ([#216](https://github.com/rollup/rollup-plugin-node-resolve/pull/216) by @mecurc)
296- Handle module side-effects ([#219](https://github.com/rollup/rollup-plugin-node-resolve/pull/219) by @lukastaegert)
297
298### Breaking Changes
299
300- Requires at least rollup@1.11.0 to work (v1.12.0 for module side-effects to be respected)
301- If used with rollup-plugin-commonjs, it should be at least v10.0.0
302
303## 4.2.4 (2019-05-11)
304
305- Add note on builtins to Readme ([#215](https://github.com/rollup/rollup-plugin-node-resolve/pull/215) by @keithamus)
306- Add issue templates ([#217](https://github.com/rollup/rollup-plugin-node-resolve/pull/217) by @mecurc)
307- Improve performance by caching `isDir` ([#218](https://github.com/rollup/rollup-plugin-node-resolve/pull/218) by @keithamus)
308
309## 4.2.3 (2019-04-11)
310
311- Fix ordering of jsnext:main when using the jsnext option ([#209](https://github.com/rollup/rollup-plugin-node-resolve/pull/209) by @lukastaegert)
312
313## 4.2.2 (2019-04-10)
314
315- Fix TypeScript typings (rename and export Options interface) ([#206](https://github.com/rollup/rollup-plugin-node-resolve/pull/206) by @Kocal)
316- Fix mainfields typing ([#207](https://github.com/rollup/rollup-plugin-node-resolve/pull/207) by @nicolashenry)
317
318## 4.2.1 (2019-04-06)
319
320- Respect setting the deprecated fields "module", "main", and "jsnext" ([#204](https://github.com/rollup/rollup-plugin-node-resolve/pull/204) by @nick-woodward)
321
322## 4.2.0 (2019-04-06)
323
324- Add new mainfields option ([#182](https://github.com/rollup/rollup-plugin-node-resolve/pull/182) by @keithamus)
325- Added dedupe option to prevent bundling the same package multiple times ([#201](https://github.com/rollup/rollup-plugin-node-resolve/pull/182) by @sormy)
326
327## 4.1.0 (2019-04-05)
328
329- Add TypeScript typings ([#189](https://github.com/rollup/rollup-plugin-node-resolve/pull/189) by @NotWoods)
330- Update dependencies ([#202](https://github.com/rollup/rollup-plugin-node-resolve/pull/202) by @lukastaegert)
331
332## 4.0.1 (2019-02-22)
333
334- Fix issue when external modules are specified in `package.browser` ([#143](https://github.com/rollup/rollup-plugin-node-resolve/pull/143) by @keithamus)
335- Fix `package.browser` mapping issue when `false` is specified ([#183](https://github.com/rollup/rollup-plugin-node-resolve/pull/183) by @allex)
336
337## 4.0.0 (2018-12-09)
338
339This release will support rollup@1.0
340
341### Features
342
343- Resolve modules used to define manual chunks ([#185](https://github.com/rollup/rollup-plugin-node-resolve/pull/185) by @mcshaman)
344- Update dependencies and plugin hook usage ([#187](https://github.com/rollup/rollup-plugin-node-resolve/pull/187) by @lukastaegert)
345
346## 3.4.0 (2018-09-04)
347
348This release now supports `.mjs` files by default
349
350### Features
351
352- feat: Support .mjs files by default (https://github.com/rollup/rollup-plugin-node-resolve/pull/151, by @leebyron)
353
354## 3.3.0 (2018-03-17)
355
356This release adds the `only` option
357
358### New Features
359
360- feat: add `only` option (#83; @arantes555)
361
362### Docs
363
364- docs: correct description of `jail` option (#120; @GeorgeTaveras1231)
365
366## 3.2.0 (2018-03-07)
367
368This release caches reading/statting of files, to improve speed.
369
370### Performance Improvements
371
372- perf: cache file stats/reads (#126; @keithamus)
373
374## 3.0.4 (unreleased)
375
376- Update lockfile [#137](https://github.com/rollup/rollup-plugin-node-resolve/issues/137)
377- Update rollup dependency [#138](https://github.com/rollup/rollup-plugin-node-resolve/issues/138)
378- Enable installation from Github [#142](https://github.com/rollup/rollup-plugin-node-resolve/issues/142)
379
380## 3.0.3
381
382- Fix [#130](https://github.com/rollup/rollup-plugin-node-resolve/issues/130) and [#131](https://github.com/rollup/rollup-plugin-node-resolve/issues/131)
383
384## 3.0.2
385
386- Ensure `pkg.browser` is an object if necessary ([#129](https://github.com/rollup/rollup-plugin-node-resolve/pull/129))
387
388## 3.0.1
389
390- Remove `browser-resolve` dependency ([#127](https://github.com/rollup/rollup-plugin-node-resolve/pull/127))
391
392## 3.0.0
393
394- [BREAKING] Remove `options.skip` ([#90](https://github.com/rollup/rollup-plugin-node-resolve/pull/90))
395- Add `modulesOnly` option ([#96](https://github.com/rollup/rollup-plugin-node-resolve/pull/96))
396
397## 2.1.1
398
399- Prevent `jail` from breaking builds on Windows ([#93](https://github.com/rollup/rollup-plugin-node-resolve/issues/93))
400
401## 2.1.0
402
403- Add `jail` option ([#53](https://github.com/rollup/rollup-plugin-node-resolve/pull/53))
404- Add `customResolveOptions` option ([#79](https://github.com/rollup/rollup-plugin-node-resolve/pull/79))
405- Support symlinked packages ([#82](https://github.com/rollup/rollup-plugin-node-resolve/pull/82))
406
407## 2.0.0
408
409- Add support `module` field in package.json as an official alternative to jsnext
410
411## 1.7.3
412
413- Error messages are more descriptive ([#50](https://github.com/rollup/rollup-plugin-node-resolve/issues/50))
414
415## 1.7.2
416
417- Allow entry point paths beginning with ./
418
419## 1.7.1
420
421- Return a `name`
422
423## 1.7.0
424
425- Allow relative IDs to be external ([#32](https://github.com/rollup/rollup-plugin-node-resolve/pull/32))
426
427## 1.6.0
428
429- Skip IDs containing null character
430
431## 1.5.0
432
433- Prefer built-in options, but allow opting out ([#28](https://github.com/rollup/rollup-plugin-node-resolve/pull/28))
434
435## 1.4.0
436
437- Pass `options.extensions` through to `node-resolve`
438
439## 1.3.0
440
441- `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))
442
443## 1.2.1
444
445- Support scoped packages in `skip` option ([#15](https://github.com/rollup/rollup-plugin-node-resolve/issues/15))
446
447## 1.2.0
448
449- Support `browser` field ([#8](https://github.com/rollup/rollup-plugin-node-resolve/issues/8))
450- Get tests to pass on Windows
451
452## 1.1.0
453
454- Use node-resolve to handle various corner cases
455
456## 1.0.0
457
458- Add ES6 build, use Rollup 0.20.0
459
460## 0.1.0
461
462- First release
\No newline at end of file