@rollup/wasm-node 4.31.0 → 4.32.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 +4 -4
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +6 -5
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.d.ts +1 -0
- 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 +3 -3
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +4 -4
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +6 -5
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +12 -12
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.32.1
|
|
5
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
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.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.32.1
|
|
4
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -15,7 +15,7 @@ import process$1, { env } from 'node:process';
|
|
|
15
15
|
import { performance } from 'node:perf_hooks';
|
|
16
16
|
import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
|
|
17
17
|
|
|
18
|
-
var version = "4.
|
|
18
|
+
var version = "4.32.1";
|
|
19
19
|
|
|
20
20
|
const comma = ','.charCodeAt(0);
|
|
21
21
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -13059,6 +13059,7 @@ class LogicalExpression extends NodeBase {
|
|
|
13059
13059
|
deoptimizeCache() {
|
|
13060
13060
|
if (this.hasDeoptimizedCache)
|
|
13061
13061
|
return;
|
|
13062
|
+
this.hasDeoptimizedCache = true;
|
|
13062
13063
|
if (this.usedBranch) {
|
|
13063
13064
|
const unusedBranch = this.usedBranch === this.left ? this.right : this.left;
|
|
13064
13065
|
this.usedBranch = null;
|
|
@@ -13072,7 +13073,6 @@ class LogicalExpression extends NodeBase {
|
|
|
13072
13073
|
// Request another pass because we need to ensure "include" runs again if
|
|
13073
13074
|
// it is rendered
|
|
13074
13075
|
context.requestTreeshakingPass();
|
|
13075
|
-
this.hasDeoptimizedCache = true;
|
|
13076
13076
|
}
|
|
13077
13077
|
deoptimizePath(path) {
|
|
13078
13078
|
const usedBranch = this.getUsedBranch();
|
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.32.1
|
|
4
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -9183,10 +9183,10 @@ class Task {
|
|
|
9183
9183
|
return path.resolve(output.file || output.dir);
|
|
9184
9184
|
return undefined;
|
|
9185
9185
|
});
|
|
9186
|
-
|
|
9187
|
-
this.filter = createFilter(watchOptions.include, watchOptions.exclude);
|
|
9186
|
+
this.watchOptions = this.options.watch || {};
|
|
9187
|
+
this.filter = createFilter(this.watchOptions.include, this.watchOptions.exclude);
|
|
9188
9188
|
this.fileWatcher = new FileWatcher(this, {
|
|
9189
|
-
...watchOptions.chokidar,
|
|
9189
|
+
...this.watchOptions.chokidar,
|
|
9190
9190
|
disableGlobbing: true,
|
|
9191
9191
|
ignoreInitial: true
|
|
9192
9192
|
});
|
|
@@ -9206,6 +9206,7 @@ class Task {
|
|
|
9206
9206
|
}
|
|
9207
9207
|
}
|
|
9208
9208
|
this.watcher.invalidate({ event: details.event, id });
|
|
9209
|
+
this.watchOptions.onInvalidate?.(id);
|
|
9209
9210
|
}
|
|
9210
9211
|
async run() {
|
|
9211
9212
|
if (!this.invalidated)
|
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.d.ts
CHANGED
|
@@ -969,6 +969,7 @@ export interface WatcherOptions {
|
|
|
969
969
|
exclude?: string | RegExp | (string | RegExp)[];
|
|
970
970
|
include?: string | RegExp | (string | RegExp)[];
|
|
971
971
|
skipWrite?: boolean;
|
|
972
|
+
onInvalidate?: (id: string) => void;
|
|
972
973
|
}
|
|
973
974
|
|
|
974
975
|
export interface RollupWatchOptions extends InputOptions {
|
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.32.1
|
|
4
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -204,7 +204,7 @@ const deferredHandlers = {
|
|
|
204
204
|
};
|
|
205
205
|
function defaultBody(log) {
|
|
206
206
|
if (log.url) {
|
|
207
|
-
info(
|
|
207
|
+
info(log.url);
|
|
208
208
|
}
|
|
209
209
|
const loc = formatLocation(log);
|
|
210
210
|
if (loc) {
|
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.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.32.1
|
|
4
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -17,7 +17,7 @@ const native_js = require('../native.js');
|
|
|
17
17
|
const node_perf_hooks = require('node:perf_hooks');
|
|
18
18
|
const promises = require('node:fs/promises');
|
|
19
19
|
|
|
20
|
-
var version = "4.
|
|
20
|
+
var version = "4.32.1";
|
|
21
21
|
|
|
22
22
|
function ensureArray$1(items) {
|
|
23
23
|
if (Array.isArray(items)) {
|
|
@@ -14527,6 +14527,7 @@ class LogicalExpression extends NodeBase {
|
|
|
14527
14527
|
deoptimizeCache() {
|
|
14528
14528
|
if (this.hasDeoptimizedCache)
|
|
14529
14529
|
return;
|
|
14530
|
+
this.hasDeoptimizedCache = true;
|
|
14530
14531
|
if (this.usedBranch) {
|
|
14531
14532
|
const unusedBranch = this.usedBranch === this.left ? this.right : this.left;
|
|
14532
14533
|
this.usedBranch = null;
|
|
@@ -14540,7 +14541,6 @@ class LogicalExpression extends NodeBase {
|
|
|
14540
14541
|
// Request another pass because we need to ensure "include" runs again if
|
|
14541
14542
|
// it is rendered
|
|
14542
14543
|
context.requestTreeshakingPass();
|
|
14543
|
-
this.hasDeoptimizedCache = true;
|
|
14544
14544
|
}
|
|
14545
14545
|
deoptimizePath(path) {
|
|
14546
14546
|
const usedBranch = this.getUsedBranch();
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.32.1
|
|
4
|
+
Tue, 28 Jan 2025 08:32:49 GMT - commit abcf4febe11f3d313fae41ddca35fc60670b9ff8
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -208,10 +208,10 @@ class Task {
|
|
|
208
208
|
return path.resolve(output.file || output.dir);
|
|
209
209
|
return undefined;
|
|
210
210
|
});
|
|
211
|
-
|
|
212
|
-
this.filter = rollup.createFilter(watchOptions.include, watchOptions.exclude);
|
|
211
|
+
this.watchOptions = this.options.watch || {};
|
|
212
|
+
this.filter = rollup.createFilter(this.watchOptions.include, this.watchOptions.exclude);
|
|
213
213
|
this.fileWatcher = new FileWatcher(this, {
|
|
214
|
-
...watchOptions.chokidar,
|
|
214
|
+
...this.watchOptions.chokidar,
|
|
215
215
|
disableGlobbing: true,
|
|
216
216
|
ignoreInitial: true
|
|
217
217
|
});
|
|
@@ -231,6 +231,7 @@ class Task {
|
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
233
|
this.watcher.invalidate({ event: details.event, id });
|
|
234
|
+
this.watchOptions.onInvalidate?.(id);
|
|
234
235
|
}
|
|
235
236
|
async run() {
|
|
236
237
|
if (!this.invalidated)
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.32.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",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@rollup/plugin-terser": "^0.4.4",
|
|
53
53
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
54
54
|
"@rollup/pluginutils": "^5.1.4",
|
|
55
|
-
"@shikijs/vitepress-twoslash": "^
|
|
55
|
+
"@shikijs/vitepress-twoslash": "^2.0.3",
|
|
56
56
|
"@types/mocha": "^10.0.10",
|
|
57
|
-
"@types/node": "^18.19.
|
|
57
|
+
"@types/node": "^18.19.71",
|
|
58
58
|
"@types/semver": "^7.5.8",
|
|
59
59
|
"@types/yargs-parser": "^21.0.3",
|
|
60
60
|
"@vue/language-server": "^2.2.0",
|
|
@@ -72,31 +72,31 @@
|
|
|
72
72
|
"es6-shim": "^0.35.8",
|
|
73
73
|
"eslint": "^9.18.0",
|
|
74
74
|
"eslint-config-prettier": "^10.0.1",
|
|
75
|
-
"eslint-plugin-prettier": "^5.2.
|
|
75
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
76
76
|
"eslint-plugin-unicorn": "^56.0.1",
|
|
77
77
|
"eslint-plugin-vue": "^9.32.0",
|
|
78
78
|
"fixturify": "^3.0.0",
|
|
79
79
|
"flru": "^1.0.2",
|
|
80
|
-
"fs-extra": "^11.
|
|
80
|
+
"fs-extra": "^11.3.0",
|
|
81
81
|
"github-api": "^3.4.0",
|
|
82
82
|
"globals": "^15.14.0",
|
|
83
83
|
"husky": "^9.1.7",
|
|
84
84
|
"is-reference": "^3.0.3",
|
|
85
|
-
"lint-staged": "^15.
|
|
85
|
+
"lint-staged": "^15.4.1",
|
|
86
86
|
"locate-character": "^3.0.0",
|
|
87
87
|
"magic-string": "^0.30.17",
|
|
88
|
-
"mocha": "^11.0
|
|
88
|
+
"mocha": "^11.1.0",
|
|
89
89
|
"nodemon": "^3.1.9",
|
|
90
90
|
"npm-audit-resolver": "^3.0.0-RC.0",
|
|
91
91
|
"nyc": "^17.1.0",
|
|
92
92
|
"picocolors": "^1.1.1",
|
|
93
|
-
"pinia": "^2.3.
|
|
93
|
+
"pinia": "^2.3.1",
|
|
94
94
|
"prettier": "^3.4.2",
|
|
95
95
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
96
96
|
"pretty-bytes": "^6.1.1",
|
|
97
97
|
"pretty-ms": "^9.2.0",
|
|
98
98
|
"requirejs": "^2.3.7",
|
|
99
|
-
"rollup": "^4.
|
|
99
|
+
"rollup": "^4.31.0",
|
|
100
100
|
"rollup-plugin-license": "^3.5.3",
|
|
101
101
|
"rollup-plugin-string": "^3.0.0",
|
|
102
102
|
"semver": "^7.6.3",
|
|
@@ -108,9 +108,9 @@
|
|
|
108
108
|
"terser": "^5.37.0",
|
|
109
109
|
"tslib": "^2.8.1",
|
|
110
110
|
"typescript": "^5.7.3",
|
|
111
|
-
"typescript-eslint": "^8.
|
|
112
|
-
"vite": "^6.0.
|
|
113
|
-
"vitepress": "^1.
|
|
111
|
+
"typescript-eslint": "^8.21.0",
|
|
112
|
+
"vite": "^6.0.10",
|
|
113
|
+
"vitepress": "^1.6.1",
|
|
114
114
|
"vue": "^3.5.13",
|
|
115
115
|
"vue-tsc": "^2.2.0",
|
|
116
116
|
"wasm-pack": "^0.13.1",
|