@rollup/plugin-commonjs 22.0.0 → 22.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rollup/plugin-commonjs",
3
- "version": "22.0.0",
3
+ "version": "22.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/CHANGELOG.md DELETED
@@ -1,652 +0,0 @@
1
- # @rollup/plugin-commonjs ChangeLog
2
-
3
- ## v22.0.0
4
-
5
- _2022-04-24_
6
-
7
- ### Breaking Changes
8
-
9
- - fix: add heuristic to deoptimize requires after calling imported function (requires rollup@2.68.0) (#1038)
10
- - feat: reimplement dynamic import handling (requires Node 12, no longer supports require.cache) (#1038)
11
-
12
- ### Bugfixes
13
-
14
- - fix: support CJS modules re-exporting transpiled ESM modules (#1165)
15
- - fix: Warn when plugins do not pass options to resolveId (#1038)
16
- - fix: Do not change semantics when removing requires in if statements (#1038)
17
- - fix: handle external dependencies when using the cache (#1038)
18
- - fix: proxy all entries to not break legacy polyfill plugins (#1038)
19
- - fix: use correct version and add package exports (#1038)
20
- - fix: validate node-resolve peer version (#1038)
21
- - fix: inject module name into dynamic require function (#1038)
22
- - fix: do not transform "typeof exports" for mixed modules (#1038)
23
- - fix: attach correct plugin meta-data to commonjs modules (#1038)
24
-
25
- ### Features
26
-
27
- - feat: expose plugin version (#1038)
28
- - feat: throw for dynamic requires from outside the configured root (#1038)
29
- - feat: add dynamicRequireRoot option (#1038)
30
- - feat: auto-detect conditional requires (#1038)
31
- - feat: limit ignoreTryCatch to external requires (#1038)
32
- - feat: make namespace callable when requiring ESM with function default (#1038)
33
- - feat: Infer type for unidentified modules (#1038)
34
- - feat: automatically wrap cyclic modules (#1038)
35
- - feat: add strictRequires option to wrap modules (#1038)
36
-
37
- ### Updates
38
-
39
- - refactor: deconflict helpers only once globals are known (#1038)
40
-
41
- ## v21.1.0
42
-
43
- _2022-04-15_
44
-
45
- ### Features
46
-
47
- - feat: make defaultIsModuleExports as funtion to config defaultIsModuleExports for each source (#1052)
48
-
49
- ## v21.0.3
50
-
51
- _2022-03-27_
52
-
53
- ### Updates
54
-
55
- - docs: sync required rollup version (#1118)
56
-
57
- ## v21.0.2
58
-
59
- _2022-02-23_
60
-
61
- ### Updates
62
-
63
- - chore: transpile dynamic helper to ES5 (#1082)
64
-
65
- ## v21.0.1
66
-
67
- _2021-10-19_
68
-
69
- ### Bugfixes
70
-
71
- - fix: pass on isEntry and custom resolve options (#1018)
72
-
73
- ## v21.0.0
74
-
75
- _2021-10-01_
76
-
77
- ### Breaking Changes
78
-
79
- - fix: use safe default value for ignoreTryCatch (#1005)
80
-
81
- ## v20.0.0
82
-
83
- _2021-07-30_
84
-
85
- ### Breaking Changes
86
-
87
- - fix: Correctly infer module name for any separator (#924)
88
-
89
- ## v19.0.2
90
-
91
- _2021-07-26_
92
-
93
- ### Bugfixes
94
-
95
- - fix convert module.exports with `__esModule` property(#939) (#942)
96
-
97
- ## v19.0.1
98
-
99
- _2021-07-15_
100
-
101
- ### Bugfixes
102
-
103
- - fix: short-circuit to actual module entry point when using circular ref through a different entry (#888)
104
-
105
- ## v19.0.0
106
-
107
- _2021-05-07_
108
-
109
- ### Breaking Changes
110
-
111
- - feat!: Add support for circular dependencies (#658)
112
-
113
- ## v18.1.0
114
-
115
- _2021-05-04_
116
-
117
- ### Bugfixes
118
-
119
- - fix: idempotence issue (#871)
120
-
121
- ### Features
122
-
123
- - feat: Add `defaultIsModuleExports` option to match Node.js behavior (#838)
124
-
125
- ## v18.0.0
126
-
127
- _2021-03-26_
128
-
129
- ### Breaking Changes
130
-
131
- - feat!: Add ignore-dynamic-requires option (#819)
132
-
133
- ### Bugfixes
134
-
135
- - fix: `isRestorableCompiledEsm` should also trigger code transform (#816)
136
-
137
- ## v17.1.0
138
-
139
- _2021-01-29_
140
-
141
- ### Bugfixes
142
-
143
- - fix: correctly replace shorthand `require` (#764)
144
-
145
- ### Features
146
-
147
- - feature: load dynamic commonjs modules from es `import` (#766)
148
- - feature: support cache/resolve access inside dynamic modules (#728)
149
- - feature: allow keeping `require` calls inside try-catch (#729)
150
-
151
- ### Updates
152
-
153
- - chore: fix lint error (#719)
154
-
155
- ## v17.0.0
156
-
157
- _2020-11-30_
158
-
159
- ### Breaking Changes
160
-
161
- - feat!: reconstruct real es module from \_\_esModule marker (#537)
162
-
163
- ## v16.0.0
164
-
165
- _2020-10-27_
166
-
167
- ### Breaking Changes
168
-
169
- - feat!: Expose cjs detection and support offline caching (#604)
170
-
171
- ### Bugfixes
172
-
173
- - fix: avoid wrapping `commonjsRegister` call in `createCommonjsModule(...)` (#602)
174
- - fix: register dynamic modules when a different loader (i.e typescript) loads the entry file (#599)
175
- - fix: fixed access to node_modules dynamic module with subfolder (i.e 'logform/json') (#601)
176
-
177
- ### Features
178
-
179
- - feat: pass type of import to node-resolve (#611)
180
-
181
- ## v15.1.0
182
-
183
- _2020-09-21_
184
-
185
- ### Features
186
-
187
- - feat: inject \_\_esModule marker into ES namespaces and add Object prototype (#552)
188
- - feat: add requireReturnsDefault to types (#579)
189
-
190
- ## v15.0.0
191
-
192
- _2020-08-13_
193
-
194
- ### Breaking Changes
195
-
196
- - feat!: return the namespace by default when requiring ESM (#507)
197
- - fix!: fix interop when importing CJS that is transpiled ESM from an actual ESM (#501)
198
-
199
- ### Bugfixes
200
-
201
- - fix: add .cjs to default file extensions. (#524)
202
-
203
- ### Updates
204
-
205
- - chore: update dependencies (fe399e2)
206
-
207
- ## v14.0.0
208
-
209
- _2020-07-13_
210
-
211
- ### Release Notes
212
-
213
- This restores the fixes from v13.0.1, but as a semver compliant major version.
214
-
215
- ## v13.0.2
216
-
217
- _2020-07-13_
218
-
219
- ### Rollback
220
-
221
- Rolls back breaking change in v13.0.1 whereby the exported `unwrapExports` method was removed.
222
-
223
- ## v13.0.1
224
-
225
- _2020-07-12_
226
-
227
- ### Bugfixes
228
-
229
- - fix: prevent rewrite require.resolve (#446)
230
- - fix: Support \_\_esModule packages with a default export (#465)
231
-
232
- ## v13.0.0
233
-
234
- _2020-06-05_
235
-
236
- ### Breaking Changes
237
-
238
- - fix!: remove namedExports from types (#410)
239
- - fix!: do not create fake named exports (#427)
240
-
241
- ### Bugfixes
242
-
243
- - fix: \_\_moduleExports in multi entry + inter dependencies (#415)
244
-
245
- ## v12.0.0
246
-
247
- _2020-05-20_
248
-
249
- ### Breaking Changes
250
-
251
- - feat: add kill-switch for mixed es-cjs modules (#358)
252
- - feat: set syntheticNamedExports for commonjs modules (#149)
253
-
254
- ### Bugfixes
255
-
256
- - fix: expose the virtual `require` function on mock `module`. fixes #307 (#326)
257
- - fix: improved shouldWrap logic. fixes #304 (#355)
258
-
259
- ### Features
260
-
261
- - feat: support for explicit module.require calls. fixes #310 (#325)
262
-
263
- ## v11.1.0
264
-
265
- _2020-04-12_
266
-
267
- ### Bugfixes
268
-
269
- - fix: produce legal variable names from filenames containing hyphens. (#201)
270
-
271
- ### Features
272
-
273
- - feat: support dynamic require (#206)
274
- - feat: export properties defined using Object.defineProperty(exports, ..) (#222)
275
-
276
- ### Updates
277
-
278
- - chore: snapshot mismatch running tests before publish (d6bbfdd)
279
- - test: add snapshots to all "function" tests (#218)
280
-
281
- ## v11.0.2
282
-
283
- _2020-02-01_
284
-
285
- ### Updates
286
-
287
- - docs: fix link for plugin-node-resolve (#170)
288
- - chore: update dependencies (5405eea)
289
- - chore: remove jsnext:main (#152)
290
-
291
- ## v11.0.1
292
-
293
- _2020-01-04_
294
-
295
- ### Bugfixes
296
-
297
- - fix: module.exports object spread (#121)
298
-
299
- ## 11.0.0
300
-
301
- _2019-12-13_
302
-
303
- - **Breaking:** Minimum compatible Rollup version is 1.20.0
304
- - **Breaking:** Minimum supported Node version is 8.0.0
305
- - Published as @rollup/plugin-commonjs
306
-
307
- ## 10.1.0
308
-
309
- _2019-08-27_
310
-
311
- - Normalize ids before looking up in named export map ([#406](https://github.com/rollup/rollup-plugin-commonjs/issues/406))
312
- - Update README.md with note on symlinks ([#405](https://github.com/rollup/rollup-plugin-commonjs/issues/405))
313
-
314
- ## 10.0.2
315
-
316
- _2019-08-03_
317
-
318
- - Support preserveSymlinks: false ([#401](https://github.com/rollup/rollup-plugin-commonjs/issues/401))
319
-
320
- ## 10.0.1
321
-
322
- _2019-06-27_
323
-
324
- - Make tests run with Node 6 again and update dependencies ([#389](https://github.com/rollup/rollup-plugin-commonjs/issues/389))
325
- - Handle builtins appropriately for resolve 1.11.0 ([#395](https://github.com/rollup/rollup-plugin-commonjs/issues/395))
326
-
327
- ## 10.0.0
328
-
329
- _2019-05-15_
330
-
331
- - Use new Rollup@1.12 context functions, fix issue when resolveId returns an object ([#387](https://github.com/rollup/rollup-plugin-commonjs/issues/387))
332
-
333
- ## 9.3.4
334
-
335
- _2019-04-04_
336
-
337
- - Make "extensions" optional ([#384](https://github.com/rollup/rollup-plugin-commonjs/issues/384))
338
- - Use same typing for include and exclude properties ([#385](https://github.com/rollup/rollup-plugin-commonjs/issues/385))
339
-
340
- ## 9.3.3
341
-
342
- _2019-04-04_
343
-
344
- - Remove colon from module prefixes ([#371](https://github.com/rollup/rollup-plugin-commonjs/issues/371))
345
-
346
- ## 9.3.2
347
-
348
- _2019-04-04_
349
-
350
- - Use shared extractAssignedNames, fix destructuring issue ([#303](https://github.com/rollup/rollup-plugin-commonjs/issues/303))
351
-
352
- ## 9.3.1
353
-
354
- _2019-04-04_
355
-
356
- - Include typings in release ([#382](https://github.com/rollup/rollup-plugin-commonjs/issues/382))
357
-
358
- ## 9.3.0
359
-
360
- _2019-04-03_
361
-
362
- - Add TypeScript types ([#363](https://github.com/rollup/rollup-plugin-commonjs/issues/363))
363
-
364
- ## 9.2.3
365
-
366
- _2019-04-02_
367
-
368
- - Improve support for ES3 browsers ([#364](https://github.com/rollup/rollup-plugin-commonjs/issues/364))
369
- - Add note about monorepo usage to readme ([#372](https://github.com/rollup/rollup-plugin-commonjs/issues/372))
370
- - Add .js extension to generated helper file ([#373](https://github.com/rollup/rollup-plugin-commonjs/issues/373))
371
-
372
- ## 9.2.2
373
-
374
- _2019-03-25_
375
-
376
- - Handle array destructuring assignment ([#379](https://github.com/rollup/rollup-plugin-commonjs/issues/379))
377
-
378
- ## 9.2.1
379
-
380
- _2019-02-23_
381
-
382
- - Use correct context when manually resolving ids ([#370](https://github.com/rollup/rollup-plugin-commonjs/issues/370))
383
-
384
- ## 9.2.0
385
-
386
- _2018-10-10_
387
-
388
- - Fix missing default warning, produce better code when importing known ESM default exports ([#349](https://github.com/rollup/rollup-plugin-commonjs/issues/349))
389
- - Refactor code and add prettier ([#346](https://github.com/rollup/rollup-plugin-commonjs/issues/346))
390
-
391
- ## 9.1.8
392
-
393
- _2018-09-18_
394
-
395
- - Ignore virtual modules created by other plugins ([#327](https://github.com/rollup/rollup-plugin-commonjs/issues/327))
396
- - Add "location" and "process" to reserved words ([#330](https://github.com/rollup/rollup-plugin-commonjs/issues/330))
397
-
398
- ## 9.1.6
399
-
400
- _2018-08-24_
401
-
402
- - Keep commonJS detection between instantiations ([#338](https://github.com/rollup/rollup-plugin-commonjs/issues/338))
403
-
404
- ## 9.1.5
405
-
406
- _2018-08-09_
407
-
408
- - Handle object form of input ([#329](https://github.com/rollup/rollup-plugin-commonjs/issues/329))
409
-
410
- ## 9.1.4
411
-
412
- _2018-07-27_
413
-
414
- - Make "from" a reserved word ([#320](https://github.com/rollup/rollup-plugin-commonjs/issues/320))
415
-
416
- ## 9.1.3
417
-
418
- _2018-04-30_
419
-
420
- - Fix a caching issue ([#316](https://github.com/rollup/rollup-plugin-commonjs/issues/316))
421
-
422
- ## 9.1.2
423
-
424
- _2018-04-30_
425
-
426
- - Re-publication of 9.1.0
427
-
428
- ## 9.1.1
429
-
430
- _2018-04-30_
431
-
432
- - Fix ordering of modules when using rollup 0.58 ([#302](https://github.com/rollup/rollup-plugin-commonjs/issues/302))
433
-
434
- ## 9.1.0
435
-
436
- - Do not automatically wrap modules with return statements in top level arrow functions ([#302](https://github.com/rollup/rollup-plugin-commonjs/issues/302))
437
-
438
- ## 9.0.0
439
-
440
- - Make rollup a peer dependency with a version range ([#300](https://github.com/rollup/rollup-plugin-commonjs/issues/300))
441
-
442
- ## 8.4.1
443
-
444
- - Re-release of 8.3.0 as #287 was actually a breaking change
445
-
446
- ## 8.4.0
447
-
448
- - Better handle non-CJS files that contain CJS keywords ([#285](https://github.com/rollup/rollup-plugin-commonjs/issues/285))
449
- - Use rollup's plugin context`parse` function ([#287](https://github.com/rollup/rollup-plugin-commonjs/issues/287))
450
- - Improve error handling ([#288](https://github.com/rollup/rollup-plugin-commonjs/issues/288))
451
-
452
- ## 8.3.0
453
-
454
- - Handle multiple entry points ([#283](https://github.com/rollup/rollup-plugin-commonjs/issues/283))
455
- - Extract named exports from exported object literals ([#272](https://github.com/rollup/rollup-plugin-commonjs/issues/272))
456
- - Fix when `options.external` is modified by other plugins ([#264](https://github.com/rollup/rollup-plugin-commonjs/issues/264))
457
- - Recognize static template strings in require statements ([#271](https://github.com/rollup/rollup-plugin-commonjs/issues/271))
458
-
459
- ## 8.2.4
460
-
461
- - Don't import default from ES modules that don't export default ([#206](https://github.com/rollup/rollup-plugin-commonjs/issues/206))
462
-
463
- ## 8.2.3
464
-
465
- - Prevent duplicate default exports ([#230](https://github.com/rollup/rollup-plugin-commonjs/pull/230))
466
- - Only include default export when it exists ([#226](https://github.com/rollup/rollup-plugin-commonjs/pull/226))
467
- - Deconflict `require` aliases ([#232](https://github.com/rollup/rollup-plugin-commonjs/issues/232))
468
-
469
- ## 8.2.1
470
-
471
- - Fix magic-string deprecation warning
472
-
473
- ## 8.2.0
474
-
475
- - Avoid using `index` as a variable name ([#208](https://github.com/rollup/rollup-plugin-commonjs/pull/208))
476
-
477
- ## 8.1.1
478
-
479
- - Compatibility with 0.48 ([#220](https://github.com/rollup/rollup-plugin-commonjs/issues/220))
480
-
481
- ## 8.1.0
482
-
483
- - Handle `options.external` correctly ([#212](https://github.com/rollup/rollup-plugin-commonjs/pull/212))
484
- - Support top-level return ([#195](https://github.com/rollup/rollup-plugin-commonjs/pull/195))
485
-
486
- ## 8.0.2
487
-
488
- - Fix another `var` rewrite bug ([#181](https://github.com/rollup/rollup-plugin-commonjs/issues/181))
489
-
490
- ## 8.0.1
491
-
492
- - Remove declarators within a var declaration correctly ([#179](https://github.com/rollup/rollup-plugin-commonjs/issues/179))
493
-
494
- ## 8.0.0
495
-
496
- - Prefer the names dependencies are imported by for the common `var foo = require('foo')` pattern ([#176](https://github.com/rollup/rollup-plugin-commonjs/issues/176))
497
-
498
- ## 7.1.0
499
-
500
- - Allow certain `require` statements to pass through unmolested ([#174](https://github.com/rollup/rollup-plugin-commonjs/issues/174))
501
-
502
- ## 7.0.2
503
-
504
- - Handle duplicate default exports ([#158](https://github.com/rollup/rollup-plugin-commonjs/issues/158))
505
-
506
- ## 7.0.1
507
-
508
- - Fix exports with parentheses ([#168](https://github.com/rollup/rollup-plugin-commonjs/issues/168))
509
-
510
- ## 7.0.0
511
-
512
- - Rewrite `typeof module`, `typeof module.exports` and `typeof exports` as `'object'` ([#151](https://github.com/rollup/rollup-plugin-commonjs/issues/151))
513
-
514
- ## 6.0.1
515
-
516
- - Don't overwrite globals ([#127](https://github.com/rollup/rollup-plugin-commonjs/issues/127))
517
-
518
- ## 6.0.0
519
-
520
- - Rewrite top-level `define` as `undefined`, so AMD-first UMD blocks do not cause breakage ([#144](https://github.com/rollup/rollup-plugin-commonjs/issues/144))
521
- - Support ES2017 syntax ([#132](https://github.com/rollup/rollup-plugin-commonjs/issues/132))
522
- - Deconflict exported reserved keywords ([#116](https://github.com/rollup/rollup-plugin-commonjs/issues/116))
523
-
524
- ## 5.0.5
525
-
526
- - Fix parenthesis wrapped exports ([#120](https://github.com/rollup/rollup-plugin-commonjs/issues/120))
527
-
528
- ## 5.0.4
529
-
530
- - Ensure named exports are added to default export in optimised modules ([#112](https://github.com/rollup/rollup-plugin-commonjs/issues/112))
531
-
532
- ## 5.0.3
533
-
534
- - Respect custom `namedExports` in optimised modules ([#35](https://github.com/rollup/rollup-plugin-commonjs/issues/35))
535
-
536
- ## 5.0.2
537
-
538
- - Replace `require` (outside call expressions) with `commonjsRequire` helper ([#77](https://github.com/rollup/rollup-plugin-commonjs/issues/77), [#83](https://github.com/rollup/rollup-plugin-commonjs/issues/83))
539
-
540
- ## 5.0.1
541
-
542
- - Deconflict against globals ([#84](https://github.com/rollup/rollup-plugin-commonjs/issues/84))
543
-
544
- ## 5.0.0
545
-
546
- - Optimise modules that don't need to be wrapped in a function ([#106](https://github.com/rollup/rollup-plugin-commonjs/pull/106))
547
- - Ignore modules containing `import` and `export` statements ([#96](https://github.com/rollup/rollup-plugin-commonjs/pull/96))
548
-
549
- ## 4.1.0
550
-
551
- - Ignore dead branches ([#93](https://github.com/rollup/rollup-plugin-commonjs/issues/93))
552
-
553
- ## 4.0.1
554
-
555
- - Fix `ignoreGlobal` option ([#86](https://github.com/rollup/rollup-plugin-commonjs/pull/86))
556
-
557
- ## 4.0.0
558
-
559
- - Better interop and smaller output ([#92](https://github.com/rollup/rollup-plugin-commonjs/pull/92))
560
-
561
- ## 3.3.1
562
-
563
- - Deconflict export and local module ([rollup/rollup#554](https://github.com/rollup/rollup/issues/554))
564
-
565
- ## 3.3.0
566
-
567
- - Keep the order of execution for require calls ([#43](https://github.com/rollup/rollup-plugin-commonjs/pull/43))
568
- - Use interopDefault as helper ([#42](https://github.com/rollup/rollup-plugin-commonjs/issues/42))
569
-
570
- ## 3.2.0
571
-
572
- - Use named exports as a function when no default export is defined ([#524](https://github.com/rollup/rollup/issues/524))
573
-
574
- ## 3.1.0
575
-
576
- - Replace `typeof require` with `'function'` ([#38](https://github.com/rollup/rollup-plugin-commonjs/issues/38))
577
- - Don't attempt to resolve entry file relative to importer ([#63](https://github.com/rollup/rollup-plugin-commonjs/issues/63))
578
-
579
- ## 3.0.2
580
-
581
- - Handle multiple references to `global`
582
-
583
- ## 3.0.1
584
-
585
- - Return a `name`
586
-
587
- ## 3.0.0
588
-
589
- - Make `transform` stateless ([#71](https://github.com/rollup/rollup-plugin-commonjs/pull/71))
590
- - Support web worker `global` ([#50](https://github.com/rollup/rollup-plugin-commonjs/issues/50))
591
- - Ignore global with `options.ignoreGlobal` ([#48](https://github.com/rollup/rollup-plugin-commonjs/issues/48))
592
-
593
- ## 2.2.1
594
-
595
- - Prevent false positives with `namedExports` ([#36](https://github.com/rollup/rollup-plugin-commonjs/issues/36))
596
-
597
- ## 2.2.0
598
-
599
- - Rewrite top-level `this` expressions to mean the same as `global` ([#31](https://github.com/rollup/rollup-plugin-commonjs/issues/31))
600
-
601
- ## 2.1.0
602
-
603
- - Optimised module wrappers ([#20](https://github.com/rollup/rollup-plugin-commonjs/pull/20))
604
- - Allow control over named exports via `options.namedExports` ([#18](https://github.com/rollup/rollup-plugin-commonjs/issues/18))
605
- - Handle bare imports correctly ([#23](https://github.com/rollup/rollup-plugin-commonjs/issues/23))
606
- - Blacklist all reserved words as export names ([#21](https://github.com/rollup/rollup-plugin-commonjs/issues/21))
607
- - Configure allowed file extensions via `options.extensions` ([#27](https://github.com/rollup/rollup-plugin-commonjs/pull/27))
608
-
609
- ## 2.0.0
610
-
611
- - Support for transpiled modules – `exports.default` is used as the default export in place of `module.exports`, if applicable, and `__esModule` is not exported ([#16](https://github.com/rollup/rollup-plugin-commonjs/pull/16))
612
-
613
- ## 1.4.0
614
-
615
- - Generate sourcemaps by default
616
-
617
- ## 1.3.0
618
-
619
- - Handle references to `global` ([#6](https://github.com/rollup/rollup-plugin-commonjs/issues/6))
620
-
621
- ## 1.2.0
622
-
623
- - Generate named exports where possible ([#5](https://github.com/rollup/rollup-plugin-commonjs/issues/5))
624
- - Handle shadowed `require`/`module`/`exports`
625
-
626
- ## 1.1.0
627
-
628
- - Handle dots in filenames ([#3](https://github.com/rollup/rollup-plugin-commonjs/issues/3))
629
- - Wrap modules in IIFE for more readable output
630
-
631
- ## 1.0.0
632
-
633
- - Stable release, now that Rollup supports plugins
634
-
635
- ## 0.2.1
636
-
637
- - Allow mixed CommonJS/ES6 imports/exports
638
- - Use `var` instead of `let`
639
-
640
- ## 0.2.0
641
-
642
- - Sourcemap support
643
- - Support `options.include` and `options.exclude`
644
- - Bail early if module is obviously not a CommonJS module
645
-
646
- ## 0.1.1
647
-
648
- Add dist files to package (whoops!)
649
-
650
- ## 0.1.0
651
-
652
- - First release