rollup 3.21.1 → 3.21.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/dist/bin/rollup +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +9 -9
- package/dist/es/shared/watch.js +6 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +6 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/rollup.js +9 -9
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch-proxy.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/dist/bin/rollup
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.2
|
|
4
|
+
Sun, 30 Apr 2023 05:31:29 GMT - commit f138dcee19367f17f2e66f940fb8d612471f7ddf
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/pr
|
|
|
16
16
|
import { EventEmitter } from 'node:events';
|
|
17
17
|
import * as tty from 'tty';
|
|
18
18
|
|
|
19
|
-
var version$1 = "3.21.
|
|
19
|
+
var version$1 = "3.21.2";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -7189,7 +7189,7 @@ const PC = {
|
|
|
7189
7189
|
const ARRAY_TYPE = {
|
|
7190
7190
|
__proto__: null,
|
|
7191
7191
|
[ValueProperties]: PURE,
|
|
7192
|
-
from:
|
|
7192
|
+
from: O,
|
|
7193
7193
|
of: PF,
|
|
7194
7194
|
prototype: O
|
|
7195
7195
|
};
|
|
@@ -7256,7 +7256,7 @@ const knownGlobals = {
|
|
|
7256
7256
|
isNaN: PF,
|
|
7257
7257
|
isPrototypeOf: O,
|
|
7258
7258
|
JSON: O,
|
|
7259
|
-
Map:
|
|
7259
|
+
Map: C,
|
|
7260
7260
|
Math: {
|
|
7261
7261
|
__proto__: null,
|
|
7262
7262
|
[ValueProperties]: IMPURE,
|
|
@@ -7329,7 +7329,7 @@ const knownGlobals = {
|
|
|
7329
7329
|
isFrozen: PF,
|
|
7330
7330
|
isSealed: PF,
|
|
7331
7331
|
keys: PF,
|
|
7332
|
-
fromEntries:
|
|
7332
|
+
fromEntries: O,
|
|
7333
7333
|
entries: PF,
|
|
7334
7334
|
prototype: O
|
|
7335
7335
|
},
|
|
@@ -7352,7 +7352,7 @@ const knownGlobals = {
|
|
|
7352
7352
|
ReferenceError: PC,
|
|
7353
7353
|
Reflect: O,
|
|
7354
7354
|
RegExp: PC,
|
|
7355
|
-
Set:
|
|
7355
|
+
Set: C,
|
|
7356
7356
|
SharedArrayBuffer: C,
|
|
7357
7357
|
String: {
|
|
7358
7358
|
__proto__: null,
|
|
@@ -7392,8 +7392,8 @@ const knownGlobals = {
|
|
|
7392
7392
|
unescape: PF,
|
|
7393
7393
|
URIError: PC,
|
|
7394
7394
|
valueOf: O,
|
|
7395
|
-
WeakMap:
|
|
7396
|
-
WeakSet:
|
|
7395
|
+
WeakMap: C,
|
|
7396
|
+
WeakSet: C,
|
|
7397
7397
|
// Additional globals shared by Node and Browser that are not strictly part of the language
|
|
7398
7398
|
clearInterval: C,
|
|
7399
7399
|
clearTimeout: C,
|
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.2
|
|
4
|
+
Sun, 30 Apr 2023 05:31:29 GMT - commit f138dcee19367f17f2e66f940fb8d612471f7ddf
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -2661,6 +2661,10 @@ const setFsWatchFileListener = (path, fullPath, options, handlers) => {
|
|
|
2661
2661
|
const {listener, rawEmitter} = handlers;
|
|
2662
2662
|
let cont = FsWatchFileInstances.get(fullPath);
|
|
2663
2663
|
|
|
2664
|
+
/* eslint-disable no-unused-vars, prefer-destructuring */
|
|
2665
|
+
new Set();
|
|
2666
|
+
new Set();
|
|
2667
|
+
|
|
2664
2668
|
const copts = cont && cont.options;
|
|
2665
2669
|
if (copts && (copts.persistent < options.persistent || copts.interval > options.interval)) {
|
|
2666
2670
|
fs$2.unwatchFile(fullPath);
|
package/dist/loadConfigFile.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.2
|
|
4
|
+
Sun, 30 Apr 2023 05:31:29 GMT - commit f138dcee19367f17f2e66f940fb8d612471f7ddf
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -2656,6 +2656,10 @@ const setFsWatchFileListener = (path, fullPath, options, handlers) => {
|
|
|
2656
2656
|
const {listener, rawEmitter} = handlers;
|
|
2657
2657
|
let cont = FsWatchFileInstances.get(fullPath);
|
|
2658
2658
|
|
|
2659
|
+
/* eslint-disable no-unused-vars, prefer-destructuring */
|
|
2660
|
+
new Set();
|
|
2661
|
+
new Set();
|
|
2662
|
+
|
|
2659
2663
|
const copts = cont && cont.options;
|
|
2660
2664
|
if (copts && (copts.persistent < options.persistent || copts.interval > options.interval)) {
|
|
2661
2665
|
fs$2.unwatchFile(fullPath);
|
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.2
|
|
4
|
+
Sun, 30 Apr 2023 05:31:29 GMT - commit f138dcee19367f17f2e66f940fb8d612471f7ddf
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
|
|
|
31
31
|
|
|
32
32
|
const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
|
|
33
33
|
|
|
34
|
-
var version$1 = "3.21.
|
|
34
|
+
var version$1 = "3.21.2";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -7685,7 +7685,7 @@ const PC = {
|
|
|
7685
7685
|
const ARRAY_TYPE = {
|
|
7686
7686
|
__proto__: null,
|
|
7687
7687
|
[ValueProperties]: PURE,
|
|
7688
|
-
from:
|
|
7688
|
+
from: O,
|
|
7689
7689
|
of: PF,
|
|
7690
7690
|
prototype: O
|
|
7691
7691
|
};
|
|
@@ -7752,7 +7752,7 @@ const knownGlobals = {
|
|
|
7752
7752
|
isNaN: PF,
|
|
7753
7753
|
isPrototypeOf: O,
|
|
7754
7754
|
JSON: O,
|
|
7755
|
-
Map:
|
|
7755
|
+
Map: C,
|
|
7756
7756
|
Math: {
|
|
7757
7757
|
__proto__: null,
|
|
7758
7758
|
[ValueProperties]: IMPURE,
|
|
@@ -7825,7 +7825,7 @@ const knownGlobals = {
|
|
|
7825
7825
|
isFrozen: PF,
|
|
7826
7826
|
isSealed: PF,
|
|
7827
7827
|
keys: PF,
|
|
7828
|
-
fromEntries:
|
|
7828
|
+
fromEntries: O,
|
|
7829
7829
|
entries: PF,
|
|
7830
7830
|
prototype: O
|
|
7831
7831
|
},
|
|
@@ -7848,7 +7848,7 @@ const knownGlobals = {
|
|
|
7848
7848
|
ReferenceError: PC,
|
|
7849
7849
|
Reflect: O,
|
|
7850
7850
|
RegExp: PC,
|
|
7851
|
-
Set:
|
|
7851
|
+
Set: C,
|
|
7852
7852
|
SharedArrayBuffer: C,
|
|
7853
7853
|
String: {
|
|
7854
7854
|
__proto__: null,
|
|
@@ -7888,8 +7888,8 @@ const knownGlobals = {
|
|
|
7888
7888
|
unescape: PF,
|
|
7889
7889
|
URIError: PC,
|
|
7890
7890
|
valueOf: O,
|
|
7891
|
-
WeakMap:
|
|
7892
|
-
WeakSet:
|
|
7891
|
+
WeakMap: C,
|
|
7892
|
+
WeakSet: C,
|
|
7893
7893
|
// Additional globals shared by Node and Browser that are not strictly part of the language
|
|
7894
7894
|
clearInterval: C,
|
|
7895
7895
|
clearTimeout: C,
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED