rollup 1.29.1 → 1.31.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 +44 -0
- package/dist/bin/rollup +28 -29
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +1 -1
- package/dist/rollup.es.js +147 -79
- package/dist/rollup.js +12 -17122
- package/dist/shared/index.js +4 -3
- package/dist/shared/node-entry.js +17499 -0
- package/package.json +1 -1
package/dist/shared/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v1.
|
|
4
|
-
|
|
3
|
+
Rollup.js v1.31.1
|
|
4
|
+
Fri, 14 Feb 2020 05:25:33 GMT - commit 6f28151f53adb7f91b3e635eeebb0eba5e5d621c
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -46,7 +46,7 @@ function __awaiter(thisArg, _arguments, P, generator) {
|
|
|
46
46
|
});
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
var version = "1.
|
|
49
|
+
var version = "1.31.1";
|
|
50
50
|
|
|
51
51
|
function createCommonjsModule(fn, module) {
|
|
52
52
|
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
@@ -260,6 +260,7 @@ function getOutputOptions(config, command = {}) {
|
|
|
260
260
|
format,
|
|
261
261
|
freeze: getOption('freeze', true),
|
|
262
262
|
globals: getOption('globals'),
|
|
263
|
+
hoistTransitiveImports: getOption('hoistTransitiveImports', true),
|
|
263
264
|
indent: getOption('indent', true),
|
|
264
265
|
interop: getOption('interop', true),
|
|
265
266
|
intro: getOption('intro'),
|