rollup 2.74.1 → 2.75.2
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 +35 -0
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +1870 -1717
- package/dist/es/shared/watch.js +5 -5
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +4 -4
- package/dist/shared/loadConfigFile.js +3 -3
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +1870 -1717
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.75.2
|
|
4
|
+
Sun, 29 May 2022 13:58:04 GMT - commit a971f09f6c34c65e71470249783d0dcce02a9468
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1236,7 +1236,7 @@ const invalidStep = (step, options) => {
|
|
|
1236
1236
|
return [];
|
|
1237
1237
|
};
|
|
1238
1238
|
|
|
1239
|
-
const fillNumbers = (start, end, step = 1, options
|
|
1239
|
+
const fillNumbers = (start, end, step = 1, options) => {
|
|
1240
1240
|
let a = Number(start);
|
|
1241
1241
|
let b = Number(end);
|
|
1242
1242
|
|
|
@@ -1288,7 +1288,7 @@ const fillNumbers = (start, end, step = 1, options = {}) => {
|
|
|
1288
1288
|
return range;
|
|
1289
1289
|
};
|
|
1290
1290
|
|
|
1291
|
-
const fillLetters = (start, end, step = 1, options
|
|
1291
|
+
const fillLetters = (start, end, step = 1, options) => {
|
|
1292
1292
|
if ((!isNumber(start) && start.length > 1) || (!isNumber(end) && end.length > 1)) {
|
|
1293
1293
|
return invalidRange(start, end, options);
|
|
1294
1294
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.75.2
|
|
4
|
+
Sun, 29 May 2022 13:58:04 GMT - commit a971f09f6c34c65e71470249783d0dcce02a9468
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -217,7 +217,7 @@ function batchWarnings() {
|
|
|
217
217
|
const immediateHandlers = {
|
|
218
218
|
MISSING_NODE_BUILTINS(warning) {
|
|
219
219
|
title(`Missing shims for Node.js built-ins`);
|
|
220
|
-
stderr(`Creating a browser bundle that depends on ${rollup.printQuotedStringList(warning.modules)}. You might need to include https://github.com/
|
|
220
|
+
stderr(`Creating a browser bundle that depends on ${rollup.printQuotedStringList(warning.modules)}. You might need to include https://github.com/FredKSchott/rollup-plugin-polyfill-node`);
|
|
221
221
|
},
|
|
222
222
|
UNKNOWN_OPTION(warning) {
|
|
223
223
|
title(`You have passed an unrecognized option`);
|