@rollup/wasm-node 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 +9 -9
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/wasm-node",
|
|
3
|
-
"version": "4.44.
|
|
3
|
+
"version": "4.44.1",
|
|
4
4
|
"description": "Next-generation ES module bundler with Node wasm",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"@codemirror/language": "^6.11.1",
|
|
38
38
|
"@codemirror/search": "^6.5.11",
|
|
39
39
|
"@codemirror/state": "^6.5.2",
|
|
40
|
-
"@codemirror/view": "^6.37.
|
|
41
|
-
"@eslint/js": "^9.
|
|
40
|
+
"@codemirror/view": "^6.37.2",
|
|
41
|
+
"@eslint/js": "^9.29.0",
|
|
42
42
|
"@inquirer/prompts": "^7.5.3",
|
|
43
43
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
44
44
|
"@mermaid-js/mermaid-cli": "^11.4.3",
|
|
45
45
|
"@napi-rs/cli": "^2.18.4",
|
|
46
46
|
"@rollup/plugin-alias": "^5.1.1",
|
|
47
47
|
"@rollup/plugin-buble": "^1.0.3",
|
|
48
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
48
|
+
"@rollup/plugin-commonjs": "^28.0.5",
|
|
49
49
|
"@rollup/plugin-json": "^6.1.0",
|
|
50
50
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
51
51
|
"@rollup/plugin-replace": "^6.0.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@rollup/pluginutils": "^5.1.4",
|
|
55
55
|
"@shikijs/vitepress-twoslash": "^3.6.0",
|
|
56
56
|
"@types/mocha": "^10.0.10",
|
|
57
|
-
"@types/node": "^18.19.
|
|
57
|
+
"@types/node": "^18.19.112",
|
|
58
58
|
"@types/picomatch": "^4.0.0",
|
|
59
59
|
"@types/semver": "^7.7.0",
|
|
60
60
|
"@types/yargs-parser": "^21.0.3",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"date-time": "^4.0.0",
|
|
72
72
|
"es5-shim": "^4.6.7",
|
|
73
73
|
"es6-shim": "^0.35.8",
|
|
74
|
-
"eslint": "^9.
|
|
74
|
+
"eslint": "^9.29.0",
|
|
75
75
|
"eslint-config-prettier": "^10.1.5",
|
|
76
76
|
"eslint-plugin-prettier": "^5.4.1",
|
|
77
77
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"globals": "^16.2.0",
|
|
84
84
|
"husky": "^9.1.7",
|
|
85
85
|
"is-reference": "^3.0.3",
|
|
86
|
-
"lint-staged": "^16.1.
|
|
86
|
+
"lint-staged": "^16.1.2",
|
|
87
87
|
"locate-character": "^3.0.0",
|
|
88
88
|
"magic-string": "^0.30.17",
|
|
89
89
|
"memfs": "^4.17.2",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"terser": "^5.42.0",
|
|
111
111
|
"tslib": "^2.8.1",
|
|
112
112
|
"typescript": "^5.8.3",
|
|
113
|
-
"typescript-eslint": "^8.34.
|
|
113
|
+
"typescript-eslint": "^8.34.1",
|
|
114
114
|
"vite": "^6.3.5",
|
|
115
115
|
"vitepress": "^1.6.3",
|
|
116
116
|
"vue": "^3.5.16",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"yargs-parser": "^21.1.1"
|
|
120
120
|
},
|
|
121
121
|
"overrides": {
|
|
122
|
-
"axios": "^1.
|
|
122
|
+
"axios": "^1.10.0",
|
|
123
123
|
"semver": "^7.7.2",
|
|
124
124
|
"readable-stream": "npm:@built-in/readable-stream@1",
|
|
125
125
|
"esbuild": ">0.24.2"
|