@rollup/wasm-node 4.30.0-0 → 4.30.0-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.30.0-0
5
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
4
+ Rollup.js v4.30.0-1
5
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
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.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -16,7 +16,7 @@ import { performance } from 'node:perf_hooks';
16
16
  import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
17
17
  import * as tty from 'tty';
18
18
 
19
- var version = "4.30.0-0";
19
+ var version = "4.30.0-1";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -3409,7 +3409,12 @@ class ObjectEntity extends ExpressionEntity {
3409
3409
  }
3410
3410
  getLiteralValueAtPath(path, recursionTracker, origin) {
3411
3411
  if (path.length === 0) {
3412
- return UnknownTruthyValue;
3412
+ // This should actually be "UnknownTruthyValue". However, this currently
3413
+ // causes an issue with TypeScript enums in files with moduleSideEffects:
3414
+ // false because we cannot properly track whether a "var" has been
3415
+ // initialized. This should be reverted once we can properly track this.
3416
+ // return UnknownTruthyValue;
3417
+ return UnknownValue;
3413
3418
  }
3414
3419
  const key = path[0];
3415
3420
  const expressionAtPath = this.getMemberExpressionAndTrackDeopt(key, origin);
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -5236,9 +5236,9 @@ function requireToRegexRange () {
5236
5236
  };
5237
5237
 
5238
5238
  function collatePatterns(neg, pos, options) {
5239
- let onlyNegative = filterPatterns(neg, pos, '-', false);
5240
- let onlyPositive = filterPatterns(pos, neg, '', false);
5241
- let intersected = filterPatterns(neg, pos, '-?', true);
5239
+ let onlyNegative = filterPatterns(neg, pos, '-', false) || [];
5240
+ let onlyPositive = filterPatterns(pos, neg, '', false) || [];
5241
+ let intersected = filterPatterns(neg, pos, '-?', true) || [];
5242
5242
  let subpatterns = onlyNegative.concat(intersected).concat(onlyPositive);
5243
5243
  return subpatterns.join('|');
5244
5244
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
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.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
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.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -5231,9 +5231,9 @@ function requireToRegexRange () {
5231
5231
  };
5232
5232
 
5233
5233
  function collatePatterns(neg, pos, options) {
5234
- let onlyNegative = filterPatterns(neg, pos, '-', false);
5235
- let onlyPositive = filterPatterns(pos, neg, '', false);
5236
- let intersected = filterPatterns(neg, pos, '-?', true);
5234
+ let onlyNegative = filterPatterns(neg, pos, '-', false) || [];
5235
+ let onlyPositive = filterPatterns(pos, neg, '', false) || [];
5236
+ let intersected = filterPatterns(neg, pos, '-?', true) || [];
5237
5237
  let subpatterns = onlyNegative.concat(intersected).concat(onlyPositive);
5238
5238
  return subpatterns.join('|');
5239
5239
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
31
31
 
32
32
  const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
33
33
 
34
- var version = "4.30.0-0";
34
+ var version = "4.30.0-1";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -4925,7 +4925,12 @@ class ObjectEntity extends ExpressionEntity {
4925
4925
  }
4926
4926
  getLiteralValueAtPath(path, recursionTracker, origin) {
4927
4927
  if (path.length === 0) {
4928
- return UnknownTruthyValue;
4928
+ // This should actually be "UnknownTruthyValue". However, this currently
4929
+ // causes an issue with TypeScript enums in files with moduleSideEffects:
4930
+ // false because we cannot properly track whether a "var" has been
4931
+ // initialized. This should be reverted once we can properly track this.
4932
+ // return UnknownTruthyValue;
4933
+ return UnknownValue;
4929
4934
  }
4930
4935
  const key = path[0];
4931
4936
  const expressionAtPath = this.getMemberExpressionAndTrackDeopt(key, origin);
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.30.0-0
4
- Sat, 21 Dec 2024 07:16:43 GMT - commit 2339f1d8384a8999645823f83f9042a9fc7b3bf7
3
+ Rollup.js v4.30.0-1
4
+ Mon, 30 Dec 2024 06:51:45 GMT - commit 41ab39a6e4a5181e9be21e816dd6f11c57e1c52a
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.30.0-0",
3
+ "version": "4.30.0-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",
@@ -34,12 +34,12 @@
34
34
  "devDependencies": {
35
35
  "@codemirror/commands": "^6.7.1",
36
36
  "@codemirror/lang-javascript": "^6.2.2",
37
- "@codemirror/language": "^6.10.7",
37
+ "@codemirror/language": "^6.10.8",
38
38
  "@codemirror/search": "^6.5.8",
39
39
  "@codemirror/state": "^6.5.0",
40
- "@codemirror/view": "^6.36.0",
40
+ "@codemirror/view": "^6.36.1",
41
41
  "@eslint/js": "^9.17.0",
42
- "@inquirer/prompts": "^7.2.0",
42
+ "@inquirer/prompts": "^7.2.1",
43
43
  "@jridgewell/sourcemap-codec": "^1.5.0",
44
44
  "@mermaid-js/mermaid-cli": "^11.4.2",
45
45
  "@napi-rs/cli": "^2.18.4",
@@ -52,12 +52,12 @@
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": "^1.24.2",
55
+ "@shikijs/vitepress-twoslash": "^1.24.4",
56
56
  "@types/mocha": "^10.0.10",
57
57
  "@types/node": "^18.19.68",
58
58
  "@types/semver": "^7.5.8",
59
59
  "@types/yargs-parser": "^21.0.3",
60
- "@vue/language-server": "^2.1.10",
60
+ "@vue/language-server": "^2.2.0",
61
61
  "acorn": "^8.14.0",
62
62
  "acorn-import-assertions": "^1.9.0",
63
63
  "acorn-jsx": "^5.3.2",
@@ -80,7 +80,7 @@
80
80
  "flru": "^1.0.2",
81
81
  "fs-extra": "^11.2.0",
82
82
  "github-api": "^3.4.0",
83
- "globals": "^15.13.0",
83
+ "globals": "^15.14.0",
84
84
  "husky": "^9.1.7",
85
85
  "is-reference": "^3.0.3",
86
86
  "lint-staged": "^15.2.11",
@@ -96,7 +96,7 @@
96
96
  "pretty-bytes": "^6.1.1",
97
97
  "pretty-ms": "^9.2.0",
98
98
  "requirejs": "^2.3.7",
99
- "rollup": "^4.28.1",
99
+ "rollup": "^4.29.1",
100
100
  "rollup-plugin-license": "^3.5.3",
101
101
  "rollup-plugin-string": "^3.0.0",
102
102
  "semver": "^7.6.3",
@@ -108,11 +108,11 @@
108
108
  "terser": "^5.37.0",
109
109
  "tslib": "^2.8.1",
110
110
  "typescript": "^5.7.2",
111
- "typescript-eslint": "^8.18.1",
112
- "vite": "^6.0.3",
111
+ "typescript-eslint": "^8.18.2",
112
+ "vite": "^6.0.5",
113
113
  "vitepress": "^1.5.0",
114
114
  "vue": "^3.5.13",
115
- "vue-tsc": "^2.1.10",
115
+ "vue-tsc": "^2.2.0",
116
116
  "wasm-pack": "^0.13.1",
117
117
  "yargs-parser": "^21.1.1"
118
118
  },