rollup 1.21.3 → 1.23.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/CHANGELOG.md +52 -1
- package/dist/bin/rollup +2 -2
- package/dist/rollup.browser.es.js +17 -3
- package/dist/rollup.browser.js +17 -3
- package/dist/rollup.d.ts +1 -1
- package/dist/rollup.es.js +808 -197
- package/dist/rollup.js +806 -195
- package/dist/shared/index.js +4 -4
- package/package.json +19 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,58 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.23.1
|
|
4
|
+
*2019-10-05*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Fix a regression where the node types had a specific minimal version (#3143)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3143](https://github.com/rollup/rollup/pull/3143): Ensure that types packages have star version ranges (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 1.23.0
|
|
13
|
+
*2019-10-03*
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
* Add placeholders for extensions when preserving modules (#3116)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#3116](https://github.com/rollup/rollup/pull/3116): Include extensions in preserveModules output filenames for scriptified assets (@Andarist)
|
|
20
|
+
* [#3142](https://github.com/rollup/rollup/pull/3142): Fix typo (@tu4mo)
|
|
21
|
+
|
|
22
|
+
## 1.22.0
|
|
23
|
+
*2019-09-29*
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
* Add a new "hidden" sourcemap type that generates the map files but omits the sourcemap comment (#3120)
|
|
27
|
+
* Generate more efficient code when using `namespaceToStringTag: true` (#3135)
|
|
28
|
+
* Make sure namespace objects do not have a prototype (#3136)
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
* Do not ignore side-effectful iterators by always preserving for..of loops for now (#3132)
|
|
32
|
+
* Make sure `--context` is observed as a CLI option (#3134)
|
|
33
|
+
* Do not require specific versions for @types dependencies (#3131)
|
|
34
|
+
|
|
35
|
+
### Pull Requests
|
|
36
|
+
* [#3120](https://github.com/rollup/rollup/pull/3120): Generate sourcemaps but omit the comment (@rohitmohan96)
|
|
37
|
+
* [#3131](https://github.com/rollup/rollup/pull/3131): Use asterisk for @types/* dependencies (@frenzzy)
|
|
38
|
+
* [#3132](https://github.com/rollup/rollup/pull/3132): Preserve empty for...of loops (@imatlopez)
|
|
39
|
+
* [#3133](https://github.com/rollup/rollup/pull/3133): Update dependencies (@lukastaegert)
|
|
40
|
+
* [#3134](https://github.com/rollup/rollup/pull/3134): Wire up --context CLI flag (@tchetwin)
|
|
41
|
+
* [#3135](https://github.com/rollup/rollup/pull/3135): Remove Symbol polyfill in module namespaces (@mkubilayk)
|
|
42
|
+
* [#3136](https://github.com/rollup/rollup/pull/3136): Set null prototype on namespace objects (@rpamely)
|
|
43
|
+
|
|
44
|
+
## 1.21.4
|
|
45
|
+
*2019-09-16*
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
* Recognize common browser globals (#3117)
|
|
49
|
+
* Do not treat "typeof <global>" as a side-effect (#3117)
|
|
50
|
+
|
|
51
|
+
### Pull Requests
|
|
52
|
+
* [#3117](https://github.com/rollup/rollup/pull/3117): Add browser globals to known globals and prevent "typeof" side-effects (@lukastaegert)
|
|
53
|
+
|
|
3
54
|
## 1.21.3
|
|
4
|
-
*2019-09-
|
|
55
|
+
*2019-09-14*
|
|
5
56
|
|
|
6
57
|
### Bug Fixes
|
|
7
58
|
* Fix a regression where modifying a watched file did not trigger a rebuild (#3112)
|
package/dist/bin/rollup
CHANGED