rollup 3.21.3 → 3.21.4
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 +8 -4
- 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 +8 -4
- 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 +2 -2
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.4
|
|
4
|
+
Wed, 03 May 2023 18:48:02 GMT - commit 61acfa4c71724f1c1acc62fbf77a7a07e0355fe3
|
|
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.4";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -13706,7 +13706,11 @@ class Module {
|
|
|
13706
13706
|
isIncluded() {
|
|
13707
13707
|
// Modules where this.ast is missing have been loaded via this.load and are
|
|
13708
13708
|
// not yet fully processed, hence they cannot be included.
|
|
13709
|
-
return (this.ast &&
|
|
13709
|
+
return (this.ast &&
|
|
13710
|
+
(this.ast.included ||
|
|
13711
|
+
this.namespace.included ||
|
|
13712
|
+
this.importedFromNotTreeshaken ||
|
|
13713
|
+
this.exportShimVariable.included));
|
|
13710
13714
|
}
|
|
13711
13715
|
linkImports() {
|
|
13712
13716
|
this.addModulesToImportDescriptions(this.importDescriptions);
|
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.4
|
|
4
|
+
Wed, 03 May 2023 18:48:02 GMT - commit 61acfa4c71724f1c1acc62fbf77a7a07e0355fe3
|
|
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.4";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -14201,7 +14201,11 @@ class Module {
|
|
|
14201
14201
|
isIncluded() {
|
|
14202
14202
|
// Modules where this.ast is missing have been loaded via this.load and are
|
|
14203
14203
|
// not yet fully processed, hence they cannot be included.
|
|
14204
|
-
return (this.ast &&
|
|
14204
|
+
return (this.ast &&
|
|
14205
|
+
(this.ast.included ||
|
|
14206
|
+
this.namespace.included ||
|
|
14207
|
+
this.importedFromNotTreeshaken ||
|
|
14208
|
+
this.exportShimVariable.included));
|
|
14205
14209
|
}
|
|
14206
14210
|
linkImports() {
|
|
14207
14211
|
this.addModulesToImportDescriptions(this.importDescriptions);
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "3.21.
|
|
3
|
+
"version": "3.21.4",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@rollup/pluginutils": "^5.0.2",
|
|
83
83
|
"@types/estree": "1.0.1",
|
|
84
84
|
"@types/mocha": "^10.0.1",
|
|
85
|
-
"@types/node": "
|
|
85
|
+
"@types/node": "~14.18.42",
|
|
86
86
|
"@types/yargs-parser": "^21.0.0",
|
|
87
87
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
88
88
|
"@typescript-eslint/parser": "^5.59.1",
|