rollup 4.44.0 → 4.44.1
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/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +14 -7
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +2 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.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/parseAst.js +2 -2
- package/dist/shared/rollup.js +14 -7
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +29 -29
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.44.
|
|
5
|
-
Thu,
|
|
4
|
+
Rollup.js v4.44.1
|
|
5
|
+
Thu, 26 Jun 2025 04:33:05 GMT - commit 5a7f9e215a11de165b85dafd64350474847ec6db
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/parseAst.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.44.
|
|
4
|
-
Thu,
|
|
3
|
+
Rollup.js v4.44.1
|
|
4
|
+
Thu, 26 Jun 2025 04:33:05 GMT - commit 5a7f9e215a11de165b85dafd64350474847ec6db
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -27,7 +27,7 @@ function _mergeNamespaces(n, m) {
|
|
|
27
27
|
return Object.defineProperty(n, Symbol.toStringTag, { value: 'Module' });
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
var version = "4.44.
|
|
30
|
+
var version = "4.44.1";
|
|
31
31
|
|
|
32
32
|
const comma = ','.charCodeAt(0);
|
|
33
33
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -9059,7 +9059,11 @@ function getAugmentedNamespace(n) {
|
|
|
9059
9059
|
var f = n.default;
|
|
9060
9060
|
if (typeof f == "function") {
|
|
9061
9061
|
var a = function a () {
|
|
9062
|
-
|
|
9062
|
+
var isInstance = false;
|
|
9063
|
+
try {
|
|
9064
|
+
isInstance = this instanceof a;
|
|
9065
|
+
} catch {}
|
|
9066
|
+
if (isInstance) {
|
|
9063
9067
|
return Reflect.construct(f, arguments, this.constructor);
|
|
9064
9068
|
}
|
|
9065
9069
|
return f.apply(this, arguments);
|
|
@@ -22791,9 +22795,12 @@ const getJsx = (config) => {
|
|
|
22791
22795
|
};
|
|
22792
22796
|
const getMaxParallelFileOps = (config) => {
|
|
22793
22797
|
const maxParallelFileOps = config.maxParallelFileOps;
|
|
22794
|
-
if (typeof maxParallelFileOps
|
|
22795
|
-
|
|
22796
|
-
|
|
22798
|
+
if (typeof maxParallelFileOps === 'number') {
|
|
22799
|
+
if (maxParallelFileOps <= 0)
|
|
22800
|
+
return Infinity;
|
|
22801
|
+
return maxParallelFileOps;
|
|
22802
|
+
}
|
|
22803
|
+
return 1000;
|
|
22797
22804
|
};
|
|
22798
22805
|
const getModuleContext = (config, context) => {
|
|
22799
22806
|
const configModuleContext = config.moduleContext;
|
package/dist/es/shared/watch.js
CHANGED
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/parseAst.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.44.
|
|
4
|
-
Thu,
|
|
3
|
+
Rollup.js v4.44.1
|
|
4
|
+
Thu, 26 Jun 2025 04:33:05 GMT - commit 5a7f9e215a11de165b85dafd64350474847ec6db
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -42,7 +42,7 @@ function _mergeNamespaces(n, m) {
|
|
|
42
42
|
|
|
43
43
|
const promises__namespace = /*#__PURE__*/_interopNamespaceDefault(promises);
|
|
44
44
|
|
|
45
|
-
var version = "4.44.
|
|
45
|
+
var version = "4.44.1";
|
|
46
46
|
|
|
47
47
|
function ensureArray$1(items) {
|
|
48
48
|
if (Array.isArray(items)) {
|
|
@@ -944,7 +944,11 @@ function getAugmentedNamespace(n) {
|
|
|
944
944
|
var f = n.default;
|
|
945
945
|
if (typeof f == "function") {
|
|
946
946
|
var a = function a () {
|
|
947
|
-
|
|
947
|
+
var isInstance = false;
|
|
948
|
+
try {
|
|
949
|
+
isInstance = this instanceof a;
|
|
950
|
+
} catch {}
|
|
951
|
+
if (isInstance) {
|
|
948
952
|
return Reflect.construct(f, arguments, this.constructor);
|
|
949
953
|
}
|
|
950
954
|
return f.apply(this, arguments);
|
|
@@ -23127,9 +23131,12 @@ const getJsx = (config) => {
|
|
|
23127
23131
|
};
|
|
23128
23132
|
const getMaxParallelFileOps = (config) => {
|
|
23129
23133
|
const maxParallelFileOps = config.maxParallelFileOps;
|
|
23130
|
-
if (typeof maxParallelFileOps
|
|
23131
|
-
|
|
23132
|
-
|
|
23134
|
+
if (typeof maxParallelFileOps === 'number') {
|
|
23135
|
+
if (maxParallelFileOps <= 0)
|
|
23136
|
+
return Infinity;
|
|
23137
|
+
return maxParallelFileOps;
|
|
23138
|
+
}
|
|
23139
|
+
return 1000;
|
|
23133
23140
|
};
|
|
23134
23141
|
const getModuleContext = (config, context) => {
|
|
23135
23142
|
const configModuleContext = config.moduleContext;
|
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": "4.44.
|
|
3
|
+
"version": "4.44.1",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -109,26 +109,26 @@
|
|
|
109
109
|
"homepage": "https://rollupjs.org/",
|
|
110
110
|
"optionalDependencies": {
|
|
111
111
|
"fsevents": "~2.3.2",
|
|
112
|
-
"@rollup/rollup-darwin-arm64": "4.44.
|
|
113
|
-
"@rollup/rollup-android-arm64": "4.44.
|
|
114
|
-
"@rollup/rollup-win32-arm64-msvc": "4.44.
|
|
115
|
-
"@rollup/rollup-freebsd-arm64": "4.44.
|
|
116
|
-
"@rollup/rollup-linux-arm64-gnu": "4.44.
|
|
117
|
-
"@rollup/rollup-linux-arm64-musl": "4.44.
|
|
118
|
-
"@rollup/rollup-android-arm-eabi": "4.44.
|
|
119
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.44.
|
|
120
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.44.
|
|
121
|
-
"@rollup/rollup-win32-ia32-msvc": "4.44.
|
|
122
|
-
"@rollup/rollup-linux-loongarch64-gnu": "4.44.
|
|
123
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.44.
|
|
124
|
-
"@rollup/rollup-linux-riscv64-musl": "4.44.
|
|
125
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "4.44.
|
|
126
|
-
"@rollup/rollup-linux-s390x-gnu": "4.44.
|
|
127
|
-
"@rollup/rollup-darwin-x64": "4.44.
|
|
128
|
-
"@rollup/rollup-win32-x64-msvc": "4.44.
|
|
129
|
-
"@rollup/rollup-freebsd-x64": "4.44.
|
|
130
|
-
"@rollup/rollup-linux-x64-gnu": "4.44.
|
|
131
|
-
"@rollup/rollup-linux-x64-musl": "4.44.
|
|
112
|
+
"@rollup/rollup-darwin-arm64": "4.44.1",
|
|
113
|
+
"@rollup/rollup-android-arm64": "4.44.1",
|
|
114
|
+
"@rollup/rollup-win32-arm64-msvc": "4.44.1",
|
|
115
|
+
"@rollup/rollup-freebsd-arm64": "4.44.1",
|
|
116
|
+
"@rollup/rollup-linux-arm64-gnu": "4.44.1",
|
|
117
|
+
"@rollup/rollup-linux-arm64-musl": "4.44.1",
|
|
118
|
+
"@rollup/rollup-android-arm-eabi": "4.44.1",
|
|
119
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.44.1",
|
|
120
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.44.1",
|
|
121
|
+
"@rollup/rollup-win32-ia32-msvc": "4.44.1",
|
|
122
|
+
"@rollup/rollup-linux-loongarch64-gnu": "4.44.1",
|
|
123
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.44.1",
|
|
124
|
+
"@rollup/rollup-linux-riscv64-musl": "4.44.1",
|
|
125
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.44.1",
|
|
126
|
+
"@rollup/rollup-linux-s390x-gnu": "4.44.1",
|
|
127
|
+
"@rollup/rollup-darwin-x64": "4.44.1",
|
|
128
|
+
"@rollup/rollup-win32-x64-msvc": "4.44.1",
|
|
129
|
+
"@rollup/rollup-freebsd-x64": "4.44.1",
|
|
130
|
+
"@rollup/rollup-linux-x64-gnu": "4.44.1",
|
|
131
|
+
"@rollup/rollup-linux-x64-musl": "4.44.1"
|
|
132
132
|
},
|
|
133
133
|
"dependencies": {
|
|
134
134
|
"@types/estree": "1.0.8"
|
|
@@ -142,15 +142,15 @@
|
|
|
142
142
|
"@codemirror/language": "^6.11.1",
|
|
143
143
|
"@codemirror/search": "^6.5.11",
|
|
144
144
|
"@codemirror/state": "^6.5.2",
|
|
145
|
-
"@codemirror/view": "^6.37.
|
|
146
|
-
"@eslint/js": "^9.
|
|
145
|
+
"@codemirror/view": "^6.37.2",
|
|
146
|
+
"@eslint/js": "^9.29.0",
|
|
147
147
|
"@inquirer/prompts": "^7.5.3",
|
|
148
148
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
149
149
|
"@mermaid-js/mermaid-cli": "^11.4.3",
|
|
150
150
|
"@napi-rs/cli": "^2.18.4",
|
|
151
151
|
"@rollup/plugin-alias": "^5.1.1",
|
|
152
152
|
"@rollup/plugin-buble": "^1.0.3",
|
|
153
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
153
|
+
"@rollup/plugin-commonjs": "^28.0.5",
|
|
154
154
|
"@rollup/plugin-json": "^6.1.0",
|
|
155
155
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
156
156
|
"@rollup/plugin-replace": "^6.0.2",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"@rollup/pluginutils": "^5.1.4",
|
|
160
160
|
"@shikijs/vitepress-twoslash": "^3.6.0",
|
|
161
161
|
"@types/mocha": "^10.0.10",
|
|
162
|
-
"@types/node": "^18.19.
|
|
162
|
+
"@types/node": "^18.19.112",
|
|
163
163
|
"@types/picomatch": "^4.0.0",
|
|
164
164
|
"@types/semver": "^7.7.0",
|
|
165
165
|
"@types/yargs-parser": "^21.0.3",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"date-time": "^4.0.0",
|
|
177
177
|
"es5-shim": "^4.6.7",
|
|
178
178
|
"es6-shim": "^0.35.8",
|
|
179
|
-
"eslint": "^9.
|
|
179
|
+
"eslint": "^9.29.0",
|
|
180
180
|
"eslint-config-prettier": "^10.1.5",
|
|
181
181
|
"eslint-plugin-prettier": "^5.4.1",
|
|
182
182
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"globals": "^16.2.0",
|
|
189
189
|
"husky": "^9.1.7",
|
|
190
190
|
"is-reference": "^3.0.3",
|
|
191
|
-
"lint-staged": "^16.1.
|
|
191
|
+
"lint-staged": "^16.1.2",
|
|
192
192
|
"locate-character": "^3.0.0",
|
|
193
193
|
"magic-string": "^0.30.17",
|
|
194
194
|
"memfs": "^4.17.2",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"terser": "^5.42.0",
|
|
216
216
|
"tslib": "^2.8.1",
|
|
217
217
|
"typescript": "^5.8.3",
|
|
218
|
-
"typescript-eslint": "^8.34.
|
|
218
|
+
"typescript-eslint": "^8.34.1",
|
|
219
219
|
"vite": "^6.3.5",
|
|
220
220
|
"vitepress": "^1.6.3",
|
|
221
221
|
"vue": "^3.5.16",
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
"yargs-parser": "^21.1.1"
|
|
225
225
|
},
|
|
226
226
|
"overrides": {
|
|
227
|
-
"axios": "^1.
|
|
227
|
+
"axios": "^1.10.0",
|
|
228
228
|
"semver": "^7.7.2",
|
|
229
229
|
"readable-stream": "npm:@built-in/readable-stream@1",
|
|
230
230
|
"esbuild": ">0.24.2"
|