UNPKG

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