rollup 2.16.1 → 2.18.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 +51 -0
- package/dist/bin/rollup +10 -10
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +16042 -15986
- package/dist/es/shared/watch.js +5 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +15 -3
- package/dist/rollup.js +6 -6
- package/dist/shared/index.js +9 -9
- package/dist/shared/loadConfigFile.js +32 -19
- package/dist/shared/mergeOptions.js +14 -11
- package/dist/shared/rollup.js +16051 -15995
- package/dist/shared/watch-cli.js +8 -8
- package/dist/shared/watch.js +4 -4
- package/package.json +7 -5
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.18.1
|
|
4
|
+
Fri, 26 Jun 2020 19:42:28 GMT - commit 1aeb23b23ef1aafe2edcbfd5c4062dd97186f700
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -4063,8 +4063,10 @@ function mergeOutputOptions(config, overrides, warn) {
|
|
|
4063
4063
|
globals: getOption('globals'),
|
|
4064
4064
|
hoistTransitiveImports: getOption('hoistTransitiveImports'),
|
|
4065
4065
|
indent: getOption('indent'),
|
|
4066
|
+
inlineDynamicImports: getOption('inlineDynamicImports'),
|
|
4066
4067
|
interop: getOption('interop'),
|
|
4067
4068
|
intro: getOption('intro'),
|
|
4069
|
+
manualChunks: getOption('manualChunks'),
|
|
4068
4070
|
minifyInternalExports: getOption('minifyInternalExports'),
|
|
4069
4071
|
name: getOption('name'),
|
|
4070
4072
|
namespaceToStringTag: getOption('namespaceToStringTag'),
|
|
@@ -4073,6 +4075,7 @@ function mergeOutputOptions(config, overrides, warn) {
|
|
|
4073
4075
|
paths: getOption('paths'),
|
|
4074
4076
|
plugins: ensureArray$1(config.plugins),
|
|
4075
4077
|
preferConst: getOption('preferConst'),
|
|
4078
|
+
preserveModules: getOption('preserveModules'),
|
|
4076
4079
|
sourcemap: getOption('sourcemap'),
|
|
4077
4080
|
sourcemapExcludeSources: getOption('sourcemapExcludeSources'),
|
|
4078
4081
|
sourcemapFile: getOption('sourcemapFile'),
|
package/dist/loadConfigFile.js
CHANGED