rollup 2.0.3 → 2.1.0
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/CHANGELOG.md +36 -0
- package/LICENSE.md +1 -1
- package/dist/bin/rollup +200 -152
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +45 -22
- package/dist/es/shared/watch.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +4 -3
- package/dist/rollup.js +2 -2
- package/dist/shared/_events_commonjs-external.js +2 -2
- package/dist/shared/rollup.js +45 -22
- package/dist/shared/watch.js +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
*2020-03-18*
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* Allow specifying an importer when emitting files to resolve relative ids (#3442)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3442](https://github.com/rollup/rollup/pull/3442): Add optional `importer` parameter to `this.emitFile` (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.0.6
|
|
13
|
+
*2020-03-13*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Do not use file names from different outputs when generating sourcemaps using the `dir` option (#3440)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#3440](https://github.com/rollup/rollup/pull/3440): Use correct file names when writing sourcemaps for multiple outputs (@lukastaegert)
|
|
20
|
+
|
|
21
|
+
## 2.0.5
|
|
22
|
+
*2020-03-12*
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
* Fix an issue where conditional statements would assume they have the wrong test value (#3438)
|
|
26
|
+
|
|
27
|
+
### Pull Requests
|
|
28
|
+
* [#3438](https://github.com/rollup/rollup/pull/3438): Make sure logical expressions always check the left argument for side-effects (@lukastaegert)
|
|
29
|
+
|
|
30
|
+
## 2.0.4
|
|
31
|
+
*2020-03-12*
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
* Avoid conflicts between namespace imports when preserving modules (#3435)
|
|
35
|
+
|
|
36
|
+
### Pull Requests
|
|
37
|
+
* [#3435](https://github.com/rollup/rollup/pull/3435): Deconflict multiple `index` imports for ES format using nested export star statements (@kamranayub)
|
|
38
|
+
|
|
3
39
|
## 2.0.3
|
|
4
40
|
*2020-03-10*
|
|
5
41
|
|
package/LICENSE.md
CHANGED