@rollup/wasm-node 4.18.0 → 4.18.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/LICENSE.md +1 -1
- 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 +256 -287
- package/dist/es/shared/parseAst.js +479 -790
- package/dist/es/shared/watch.js +65 -52
- 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 +65 -52
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +480 -791
- package/dist/shared/rollup.js +255 -286
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/dist/wasm-node/bindings_wasm.js +5 -5
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +35 -31
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
|
@@ -246,11 +246,6 @@ module.exports.__wbindgen_is_string = function(arg0) {
|
|
|
246
246
|
return ret;
|
|
247
247
|
};
|
|
248
248
|
|
|
249
|
-
module.exports.__wbg_msCrypto_eb05e62b530a1508 = function(arg0) {
|
|
250
|
-
const ret = getObject(arg0).msCrypto;
|
|
251
|
-
return addHeapObject(ret);
|
|
252
|
-
};
|
|
253
|
-
|
|
254
249
|
module.exports.__wbg_require_cca90b1a94a0255b = function() { return handleError(function () {
|
|
255
250
|
const ret = module.require;
|
|
256
251
|
return addHeapObject(ret);
|
|
@@ -266,6 +261,11 @@ module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
|
266
261
|
return addHeapObject(ret);
|
|
267
262
|
};
|
|
268
263
|
|
|
264
|
+
module.exports.__wbg_msCrypto_eb05e62b530a1508 = function(arg0) {
|
|
265
|
+
const ret = getObject(arg0).msCrypto;
|
|
266
|
+
return addHeapObject(ret);
|
|
267
|
+
};
|
|
268
|
+
|
|
269
269
|
module.exports.__wbg_randomFillSync_5c9c955aa56b6049 = function() { return handleError(function (arg0, arg1) {
|
|
270
270
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
271
271
|
}, arguments) };
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollup/wasm-node",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.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",
|
|
@@ -33,36 +33,36 @@
|
|
|
33
33
|
"core-js": "We only update manually as every update requires a snapshot update"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@codemirror/commands": "^6.
|
|
36
|
+
"@codemirror/commands": "^6.6.0",
|
|
37
37
|
"@codemirror/lang-javascript": "^6.2.2",
|
|
38
|
-
"@codemirror/language": "^6.10.
|
|
38
|
+
"@codemirror/language": "^6.10.2",
|
|
39
39
|
"@codemirror/search": "^6.5.6",
|
|
40
40
|
"@codemirror/state": "^6.4.1",
|
|
41
|
-
"@codemirror/view": "^6.
|
|
41
|
+
"@codemirror/view": "^6.28.3",
|
|
42
42
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
43
|
-
"@mermaid-js/mermaid-cli": "^10.9.
|
|
44
|
-
"@napi-rs/cli": "^2.18.
|
|
43
|
+
"@mermaid-js/mermaid-cli": "^10.9.1",
|
|
44
|
+
"@napi-rs/cli": "^2.18.4",
|
|
45
45
|
"@rollup/plugin-alias": "^5.1.0",
|
|
46
46
|
"@rollup/plugin-buble": "^1.0.3",
|
|
47
|
-
"@rollup/plugin-commonjs": "^
|
|
47
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
48
48
|
"@rollup/plugin-json": "^6.1.0",
|
|
49
49
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
50
|
-
"@rollup/plugin-replace": "^5.0.
|
|
50
|
+
"@rollup/plugin-replace": "^5.0.7",
|
|
51
51
|
"@rollup/plugin-terser": "^0.4.4",
|
|
52
52
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
53
53
|
"@rollup/pluginutils": "^5.1.0",
|
|
54
|
-
"@shikijs/vitepress-twoslash": "^1.
|
|
54
|
+
"@shikijs/vitepress-twoslash": "^1.10.0",
|
|
55
55
|
"@types/eslint": "^8.56.10",
|
|
56
56
|
"@types/inquirer": "^9.0.7",
|
|
57
|
-
"@types/mocha": "^10.0.
|
|
57
|
+
"@types/mocha": "^10.0.7",
|
|
58
58
|
"@types/node": "~18.18.14",
|
|
59
59
|
"@types/semver": "^7.5.8",
|
|
60
60
|
"@types/yargs-parser": "^21.0.3",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
62
|
-
"@typescript-eslint/parser": "^7.
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^7.15.0",
|
|
62
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
63
63
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
64
64
|
"@vue/eslint-config-typescript": "^13.0.0",
|
|
65
|
-
"acorn": "^8.
|
|
65
|
+
"acorn": "^8.12.0",
|
|
66
66
|
"acorn-import-assertions": "^1.9.0",
|
|
67
67
|
"buble": "^0.20.0",
|
|
68
68
|
"builtin-modules": "^4.0.0",
|
|
@@ -78,27 +78,28 @@
|
|
|
78
78
|
"eslint-config-prettier": "^9.1.0",
|
|
79
79
|
"eslint-plugin-import": "^2.29.1",
|
|
80
80
|
"eslint-plugin-prettier": "^5.1.3",
|
|
81
|
-
"eslint-plugin-unicorn": "^
|
|
81
|
+
"eslint-plugin-unicorn": "^54.0.0",
|
|
82
82
|
"eslint-plugin-vue": "^9.26.0",
|
|
83
83
|
"fixturify": "^3.0.0",
|
|
84
84
|
"flru": "^1.0.2",
|
|
85
85
|
"fs-extra": "^11.2.0",
|
|
86
86
|
"github-api": "^3.4.0",
|
|
87
87
|
"husky": "^9.0.11",
|
|
88
|
-
"inquirer": "^9.2
|
|
88
|
+
"inquirer": "^9.3.2",
|
|
89
89
|
"is-reference": "^3.0.2",
|
|
90
|
-
"lint-staged": "^15.2.
|
|
90
|
+
"lint-staged": "^15.2.7",
|
|
91
91
|
"locate-character": "^3.0.0",
|
|
92
92
|
"magic-string": "^0.30.10",
|
|
93
|
-
"mocha": "^10.
|
|
94
|
-
"
|
|
93
|
+
"mocha": "^10.5.2",
|
|
94
|
+
"nodemon": "^3.1.4",
|
|
95
|
+
"nyc": "^17.0.0",
|
|
95
96
|
"pinia": "^2.1.7",
|
|
96
|
-
"prettier": "^3.2
|
|
97
|
+
"prettier": "^3.3.2",
|
|
97
98
|
"pretty-bytes": "^6.1.1",
|
|
98
99
|
"pretty-ms": "^9.0.0",
|
|
99
100
|
"requirejs": "^2.3.6",
|
|
100
|
-
"rollup": "^4.
|
|
101
|
-
"rollup-plugin-license": "^3.
|
|
101
|
+
"rollup": "^4.18.0",
|
|
102
|
+
"rollup-plugin-license": "^3.5.1",
|
|
102
103
|
"rollup-plugin-string": "^3.0.0",
|
|
103
104
|
"semver": "^7.6.2",
|
|
104
105
|
"shx": "^0.3.4",
|
|
@@ -106,19 +107,22 @@
|
|
|
106
107
|
"source-map": "^0.7.4",
|
|
107
108
|
"source-map-support": "^0.5.21",
|
|
108
109
|
"systemjs": "^6.15.1",
|
|
109
|
-
"terser": "^5.31.
|
|
110
|
-
"tslib": "^2.6.
|
|
111
|
-
"typescript": "^5.
|
|
112
|
-
"vite": "^5.2
|
|
113
|
-
"vitepress": "^1.
|
|
114
|
-
"vue": "^3.4.
|
|
115
|
-
"wasm-pack": "^0.
|
|
116
|
-
"weak-napi": "^2.0.2",
|
|
110
|
+
"terser": "^5.31.1",
|
|
111
|
+
"tslib": "^2.6.3",
|
|
112
|
+
"typescript": "^5.5.3",
|
|
113
|
+
"vite": "^5.3.2",
|
|
114
|
+
"vitepress": "^1.2.3",
|
|
115
|
+
"vue": "^3.4.31",
|
|
116
|
+
"wasm-pack": "^0.13.0",
|
|
117
117
|
"yargs-parser": "^21.1.1"
|
|
118
118
|
},
|
|
119
119
|
"overrides": {
|
|
120
|
-
"axios": "^1.
|
|
121
|
-
"semver": "^7.6.2"
|
|
120
|
+
"axios": "^1.7.2",
|
|
121
|
+
"semver": "^7.6.2",
|
|
122
|
+
"ws": "^8.17.1"
|
|
123
|
+
},
|
|
124
|
+
"overrides_comments": {
|
|
125
|
+
"ws": "mermaid requires an older 8.13.0 version via puppeteer with vulnerabilities"
|
|
122
126
|
},
|
|
123
127
|
"files": [
|
|
124
128
|
"dist/wasm-node/*.wasm",
|