rollup 3.21.7 → 3.21.8
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 +7 -7
- package/dist/es/shared/watch.js +2 -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 +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/rollup.js +7 -7
- 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.8
|
|
4
|
+
Tue, 16 May 2023 07:30:04 GMT - commit 67f2416afb73734887d37e12ce5d7f00a511ac27
|
|
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.8";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -12993,14 +12993,14 @@ class NamespaceVariable extends Variable {
|
|
|
12993
12993
|
const memberVariables = this.getMemberVariables();
|
|
12994
12994
|
const members = Object.entries(memberVariables)
|
|
12995
12995
|
.filter(([_, variable]) => variable.included)
|
|
12996
|
-
.map(([name,
|
|
12997
|
-
if (this.referencedEarly ||
|
|
12996
|
+
.map(([name, variable]) => {
|
|
12997
|
+
if (this.referencedEarly || variable.isReassigned || variable === this) {
|
|
12998
12998
|
return [
|
|
12999
12999
|
null,
|
|
13000
|
-
`get ${name}${_}()${_}{${_}return ${
|
|
13000
|
+
`get ${name}${_}()${_}{${_}return ${variable.getName(getPropertyAccess)}${s}${_}}`
|
|
13001
13001
|
];
|
|
13002
13002
|
}
|
|
13003
|
-
return [name,
|
|
13003
|
+
return [name, variable.getName(getPropertyAccess)];
|
|
13004
13004
|
});
|
|
13005
13005
|
members.unshift([null, `__proto__:${_}null`]);
|
|
13006
13006
|
let output = getObject(members, { lineBreakIndent: { base: '', t } });
|
package/dist/es/shared/watch.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
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.8
|
|
4
|
+
Tue, 16 May 2023 07:30:04 GMT - commit 67f2416afb73734887d37e12ce5d7f00a511ac27
|
|
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.8";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -13488,14 +13488,14 @@ class NamespaceVariable extends Variable {
|
|
|
13488
13488
|
const memberVariables = this.getMemberVariables();
|
|
13489
13489
|
const members = Object.entries(memberVariables)
|
|
13490
13490
|
.filter(([_, variable]) => variable.included)
|
|
13491
|
-
.map(([name,
|
|
13492
|
-
if (this.referencedEarly ||
|
|
13491
|
+
.map(([name, variable]) => {
|
|
13492
|
+
if (this.referencedEarly || variable.isReassigned || variable === this) {
|
|
13493
13493
|
return [
|
|
13494
13494
|
null,
|
|
13495
|
-
`get ${name}${_}()${_}{${_}return ${
|
|
13495
|
+
`get ${name}${_}()${_}{${_}return ${variable.getName(getPropertyAccess)}${s}${_}}`
|
|
13496
13496
|
];
|
|
13497
13497
|
}
|
|
13498
|
-
return [name,
|
|
13498
|
+
return [name, variable.getName(getPropertyAccess)];
|
|
13499
13499
|
});
|
|
13500
13500
|
members.unshift([null, `__proto__:${_}null`]);
|
|
13501
13501
|
let output = getObject(members, { lineBreakIndent: { base: '', t } });
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED