rollup 2.59.0 → 2.61.0
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 +57 -0
- package/dist/bin/rollup +6 -5
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +671 -648
- package/dist/es/shared/watch.js +4 -6
- package/dist/loadConfigFile.js +3 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +1 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +3 -5
- package/dist/shared/loadConfigFile.js +120 -50
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +670 -649
- package/dist/shared/watch-cli.js +36 -13
- package/dist/shared/watch.js +2 -2
- package/package.json +21 -21
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.61.0
|
|
4
|
+
Thu, 09 Dec 2021 05:43:43 GMT - commit 49d41f78987a1dd13488df009fe2db1b5d1b6e7c
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import * as require$$0$1 from 'path';
|
|
12
12
|
import require$$0__default from 'path';
|
|
13
|
-
import { defaultOnWarn, ensureArray, warnUnknownOptions, objectifyOptionWithPresets, treeshakePresets, generatedCodePresets, picomatch as picomatch$2,
|
|
13
|
+
import { defaultOnWarn, ensureArray, warnUnknownOptions, objectifyOptionWithPresets, treeshakePresets, generatedCodePresets, picomatch as picomatch$2, createFilter, rollupInternal } from './rollup.js';
|
|
14
14
|
import require$$2$1, { platform } from 'os';
|
|
15
15
|
import require$$0$2 from 'events';
|
|
16
16
|
import fs$4 from 'fs';
|
|
@@ -3211,15 +3211,13 @@ var nodefsHandler = NodeFsHandler$1;
|
|
|
3211
3211
|
|
|
3212
3212
|
var fseventsHandler = {exports: {}};
|
|
3213
3213
|
|
|
3214
|
-
const require$$3 = /*@__PURE__*/getAugmentedNamespace(fseventsImporter);
|
|
3215
|
-
|
|
3216
3214
|
const fs$1 = fs$4;
|
|
3217
3215
|
const sysPath$1 = require$$0__default;
|
|
3218
3216
|
const { promisify: promisify$1 } = require$$2;
|
|
3219
3217
|
|
|
3220
3218
|
let fsevents;
|
|
3221
3219
|
try {
|
|
3222
|
-
fsevents = require
|
|
3220
|
+
fsevents = require('../../../src/watch/fsevents-importer').getFsEvents();
|
|
3223
3221
|
} catch (error) {
|
|
3224
3222
|
if (process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR) console.error(error);
|
|
3225
3223
|
}
|
package/dist/loadConfigFile.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.61.0
|
|
4
|
+
Thu, 09 Dec 2021 05:43:43 GMT - commit 49d41f78987a1dd13488df009fe2db1b5d1b6e7c
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -16,6 +16,7 @@ require('url');
|
|
|
16
16
|
const loadConfigFile_js = require('./shared/loadConfigFile.js');
|
|
17
17
|
require('./shared/rollup.js');
|
|
18
18
|
require('./shared/mergeOptions.js');
|
|
19
|
+
require('process');
|
|
19
20
|
require('tty');
|
|
20
21
|
require('crypto');
|
|
21
22
|
require('events');
|