@rollup/wasm-node 4.41.0 → 4.41.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 CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /*
3
3
  @license
4
- Rollup.js v4.41.0
5
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
4
+ Rollup.js v4.41.1
5
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/es/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
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.41.0";
18
+ var version = "4.41.1";
19
19
 
20
20
  const comma = ','.charCodeAt(0);
21
21
  const semicolon = ';'.charCodeAt(0);
@@ -20592,6 +20592,16 @@ function resolveIdViaPlugins(source, importer, pluginDriver, moduleLoaderResolve
20592
20592
  ...pluginContext,
20593
20593
  resolve: (source, importer, { attributes, custom, isEntry, skipSelf } = BLANK) => {
20594
20594
  skipSelf ??= true;
20595
+ if (skipSelf &&
20596
+ skip.findIndex(skippedCall => {
20597
+ return (skippedCall.plugin === plugin &&
20598
+ skippedCall.source === source &&
20599
+ skippedCall.importer === importer);
20600
+ }) !== -1) {
20601
+ // This means that the plugin recursively called itself
20602
+ // Thus returning Promise.resolve(null) in purpose of fallback to default behavior of `resolveId` plugin hook.
20603
+ return Promise.resolve(null);
20604
+ }
20595
20605
  return moduleLoaderResolveId(source, importer, custom, isEntry, attributes || EMPTY_OBJECT, skipSelf ? [...skip, { importer, plugin, source }] : skip);
20596
20606
  }
20597
20607
  });
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/parseAst.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
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.41.0";
20
+ var version = "4.41.1";
21
21
 
22
22
  function ensureArray$1(items) {
23
23
  if (Array.isArray(items)) {
@@ -22050,6 +22050,16 @@ function resolveIdViaPlugins(source, importer, pluginDriver, moduleLoaderResolve
22050
22050
  ...pluginContext,
22051
22051
  resolve: (source, importer, { attributes, custom, isEntry, skipSelf } = parseAst_js.BLANK) => {
22052
22052
  skipSelf ??= true;
22053
+ if (skipSelf &&
22054
+ skip.findIndex(skippedCall => {
22055
+ return (skippedCall.plugin === plugin &&
22056
+ skippedCall.source === source &&
22057
+ skippedCall.importer === importer);
22058
+ }) !== -1) {
22059
+ // This means that the plugin recursively called itself
22060
+ // Thus returning Promise.resolve(null) in purpose of fallback to default behavior of `resolveId` plugin hook.
22061
+ return Promise.resolve(null);
22062
+ }
22053
22063
  return moduleLoaderResolveId(source, importer, custom, isEntry, attributes || parseAst_js.EMPTY_OBJECT, skipSelf ? [...skip, { importer, plugin, source }] : skip);
22054
22064
  }
22055
22065
  });
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.41.0
4
- Sun, 18 May 2025 05:33:01 GMT - commit 0928185cd544907dab472754634ddf988452aae6
3
+ Rollup.js v4.41.1
4
+ Sat, 24 May 2025 06:13:57 GMT - commit 7c469dc4eb8e1cb6def9fdc04581fdfce9975da3
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rollup/wasm-node",
3
- "version": "4.41.0",
3
+ "version": "4.41.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,12 +33,12 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@codemirror/commands": "^6.8.1",
36
- "@codemirror/lang-javascript": "^6.2.3",
36
+ "@codemirror/lang-javascript": "^6.2.4",
37
37
  "@codemirror/language": "^6.11.0",
38
- "@codemirror/search": "^6.5.10",
38
+ "@codemirror/search": "^6.5.11",
39
39
  "@codemirror/state": "^6.5.2",
40
40
  "@codemirror/view": "^6.36.8",
41
- "@eslint/js": "^9.26.0",
41
+ "@eslint/js": "^9.27.0",
42
42
  "@inquirer/prompts": "^7.5.1",
43
43
  "@jridgewell/sourcemap-codec": "^1.5.0",
44
44
  "@mermaid-js/mermaid-cli": "^11.4.2",
@@ -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": "^3.4.0",
55
+ "@shikijs/vitepress-twoslash": "^3.4.2",
56
56
  "@types/mocha": "^10.0.10",
57
- "@types/node": "^18.19.100",
57
+ "@types/node": "^18.19.101",
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.26.0",
74
+ "eslint": "^9.27.0",
75
75
  "eslint-config-prettier": "^10.1.5",
76
76
  "eslint-plugin-prettier": "^5.4.0",
77
77
  "eslint-plugin-unicorn": "^59.0.1",
@@ -86,7 +86,7 @@
86
86
  "lint-staged": "^16.0.0",
87
87
  "locate-character": "^3.0.0",
88
88
  "magic-string": "^0.30.17",
89
- "mocha": "^11.2.2",
89
+ "mocha": "^11.4.0",
90
90
  "nodemon": "^3.1.10",
91
91
  "nyc": "^17.1.0",
92
92
  "picocolors": "^1.1.1",
@@ -97,7 +97,7 @@
97
97
  "pretty-bytes": "^7.0.0",
98
98
  "pretty-ms": "^9.2.0",
99
99
  "requirejs": "^2.3.7",
100
- "rollup": "^4.40.2",
100
+ "rollup": "^4.41.0",
101
101
  "rollup-plugin-license": "^3.6.0",
102
102
  "rollup-plugin-string": "^3.0.0",
103
103
  "semver": "^7.7.2",
@@ -106,13 +106,13 @@
106
106
  "source-map": "^0.7.4",
107
107
  "source-map-support": "^0.5.21",
108
108
  "systemjs": "^6.15.1",
109
- "terser": "^5.39.0",
109
+ "terser": "^5.39.2",
110
110
  "tslib": "^2.8.1",
111
111
  "typescript": "^5.8.3",
112
112
  "typescript-eslint": "^8.32.1",
113
113
  "vite": "^6.3.5",
114
114
  "vitepress": "^1.6.3",
115
- "vue": "^3.5.13",
115
+ "vue": "^3.5.14",
116
116
  "vue-tsc": "^2.2.10",
117
117
  "wasm-pack": "^0.13.1",
118
118
  "yargs-parser": "^21.1.1"