rollup 2.75.4 → 2.75.7
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 +42 -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 +1406 -1582
- 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 +6 -7
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +1406 -1582
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +14 -14
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.75.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.75.7
|
|
4
|
+
Mon, 20 Jun 2022 07:24:02 GMT - commit 057171c2d3bc2092b7f543fc05ead01f12595f12
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import require$$0$2, { resolve } from 'path';
|
|
11
11
|
import process$1 from 'process';
|
|
12
|
-
import {
|
|
12
|
+
import { ensureArray, warnUnknownOptions, defaultOnWarn, objectifyOptionWithPresets, treeshakePresets, objectifyOption, generatedCodePresets, picomatch as picomatch$2, getAugmentedNamespace, fseventsImporter, createFilter, rollupInternal } from './rollup.js';
|
|
13
13
|
import require$$2$1, { platform } from 'os';
|
|
14
14
|
import require$$0$1 from 'fs';
|
|
15
15
|
import require$$2 from 'util';
|
|
@@ -1392,7 +1392,7 @@ const invalidStep = (step, options) => {
|
|
|
1392
1392
|
return [];
|
|
1393
1393
|
};
|
|
1394
1394
|
|
|
1395
|
-
const fillNumbers = (start, end, step = 1, options) => {
|
|
1395
|
+
const fillNumbers = (start, end, step = 1, options = {}) => {
|
|
1396
1396
|
let a = Number(start);
|
|
1397
1397
|
let b = Number(end);
|
|
1398
1398
|
|
|
@@ -1444,7 +1444,7 @@ const fillNumbers = (start, end, step = 1, options) => {
|
|
|
1444
1444
|
return range;
|
|
1445
1445
|
};
|
|
1446
1446
|
|
|
1447
|
-
const fillLetters = (start, end, step = 1, options) => {
|
|
1447
|
+
const fillLetters = (start, end, step = 1, options = {}) => {
|
|
1448
1448
|
if ((!isNumber(start) && start.length > 1) || (!isNumber(end) && end.length > 1)) {
|
|
1449
1449
|
return invalidRange(start, end, options);
|
|
1450
1450
|
}
|
package/dist/loadConfigFile.js
CHANGED