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/es/shared/watch.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
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import require$$0$2, { resolve } from 'path';
|
|
11
11
|
import process$1 from 'process';
|
|
12
|
-
import { ensureArray, warnUnknownOptions,
|
|
12
|
+
import { defaultOnWarn, ensureArray, warnUnknownOptions, objectifyOption, objectifyOptionWithPresets, generatedCodePresets, treeshakePresets, 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