rolldown 1.0.0-beta.32 → 1.0.0-beta.34

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.
Files changed (35) hide show
  1. package/dist/cli.cjs +5 -5
  2. package/dist/cli.mjs +5 -5
  3. package/dist/config.cjs +3 -3
  4. package/dist/config.d.cts +2 -2
  5. package/dist/config.d.mts +2 -2
  6. package/dist/config.mjs +3 -3
  7. package/dist/experimental-index.cjs +36 -2
  8. package/dist/experimental-index.d.cts +36 -4
  9. package/dist/experimental-index.d.mts +36 -4
  10. package/dist/experimental-index.mjs +34 -3
  11. package/dist/filter-index.d.cts +2 -2
  12. package/dist/filter-index.d.mts +2 -2
  13. package/dist/index.cjs +2 -2
  14. package/dist/index.d.cts +2 -2
  15. package/dist/index.d.mts +2 -2
  16. package/dist/index.mjs +2 -2
  17. package/dist/parallel-plugin-worker.cjs +2 -2
  18. package/dist/parallel-plugin-worker.mjs +2 -2
  19. package/dist/parallel-plugin.d.cts +2 -2
  20. package/dist/parallel-plugin.d.mts +2 -2
  21. package/dist/parse-ast-index.cjs +1 -1
  22. package/dist/parse-ast-index.d.cts +1 -1
  23. package/dist/parse-ast-index.d.mts +1 -1
  24. package/dist/parse-ast-index.mjs +1 -1
  25. package/dist/shared/{binding-BEeJNtY4.d.mts → binding-9k0egz6L.d.mts} +110 -10
  26. package/dist/shared/{binding-CRMJJtol.d.cts → binding-D13M6Llu.d.cts} +110 -10
  27. package/dist/shared/{define-config-Cf8iQFTl.d.mts → define-config-D5AluabE.d.cts} +70 -25
  28. package/dist/shared/{define-config-Dw9PP95x.d.cts → define-config-DVSr6Unb.d.mts} +70 -25
  29. package/dist/shared/{load-config-BF8LOHEy.mjs → load-config-CXpGBNqp.mjs} +1 -1
  30. package/dist/shared/{load-config-Dl9pIpnr.cjs → load-config-CefxSUnT.cjs} +1 -1
  31. package/dist/shared/{parse-ast-index-Cn-35Vbp.cjs → parse-ast-index-BCv3Y1TT.cjs} +31 -25
  32. package/dist/shared/{parse-ast-index-Ch2Zs4Nn.mjs → parse-ast-index-DjojK-Vf.mjs} +26 -26
  33. package/dist/shared/{src-p50l1OMU.mjs → src-Chn1S4O2.mjs} +114 -95
  34. package/dist/shared/{src-CsEb-TS_.cjs → src-djpzntWm.cjs} +125 -94
  35. package/package.json +21 -21
@@ -1,5 +1,5 @@
1
1
  const require_chunk = require('./chunk-DDkG_k5U.cjs');
2
- const require_parse_ast_index = require('./parse-ast-index-Cn-35Vbp.cjs');
2
+ const require_parse_ast_index = require('./parse-ast-index-BCv3Y1TT.cjs');
3
3
  const require_misc = require('./misc-DksvspN4.cjs');
4
4
  const node_path = require_chunk.__toESM(require("node:path"));
5
5
  const node_url = require_chunk.__toESM(require("node:url"));
@@ -10,22 +10,17 @@ const node_os = require_chunk.__toESM(require("node:os"));
10
10
  const node_worker_threads = require_chunk.__toESM(require("node:worker_threads"));
11
11
 
12
12
  //#region package.json
13
- var version = "1.0.0-beta.32";
13
+ var version = "1.0.0-beta.34";
14
14
  var description$1 = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
15
15
 
16
- //#endregion
17
- //#region src/utils/normalize-string-or-regex.ts
18
- function normalizedStringOrRegex(pattern) {
19
- if (!pattern) return void 0;
20
- if (!isReadonlyArray(pattern)) return [pattern];
21
- return pattern;
22
- }
23
- function isReadonlyArray(input) {
24
- return Array.isArray(input);
25
- }
26
-
27
16
  //#endregion
28
17
  //#region src/builtin-plugin/utils.ts
18
+ var BuiltinPlugin = class {
19
+ constructor(name, _options) {
20
+ this.name = name;
21
+ this._options = _options;
22
+ }
23
+ };
29
24
  function makeBuiltinPluginCallable(plugin) {
30
25
  let callablePlugin = new require_parse_ast_index.BindingCallableBuiltinPlugin(bindingifyBuiltInPlugin(plugin));
31
26
  const wrappedPlugin = plugin;
@@ -49,67 +44,6 @@ function bindingifyBuiltInPlugin(plugin) {
49
44
  };
50
45
  }
51
46
 
52
- //#endregion
53
- //#region src/builtin-plugin/constructors.ts
54
- var BuiltinPlugin = class {
55
- constructor(name, _options) {
56
- this.name = name;
57
- this._options = _options;
58
- }
59
- };
60
- function modulePreloadPolyfillPlugin(config) {
61
- return new BuiltinPlugin("builtin:module-preload-polyfill", config);
62
- }
63
- function dynamicImportVarsPlugin(config) {
64
- if (config) {
65
- config.include = normalizedStringOrRegex(config.include);
66
- config.exclude = normalizedStringOrRegex(config.exclude);
67
- }
68
- return new BuiltinPlugin("builtin:dynamic-import-vars", config);
69
- }
70
- function importGlobPlugin(config) {
71
- return new BuiltinPlugin("builtin:import-glob", config);
72
- }
73
- function reporterPlugin(config) {
74
- return new BuiltinPlugin("builtin:reporter", config);
75
- }
76
- function manifestPlugin(config) {
77
- return new BuiltinPlugin("builtin:manifest", config);
78
- }
79
- function wasmHelperPlugin(config) {
80
- return new BuiltinPlugin("builtin:wasm-helper", config);
81
- }
82
- function wasmFallbackPlugin() {
83
- const builtinPlugin = new BuiltinPlugin("builtin:wasm-fallback");
84
- return makeBuiltinPluginCallable(builtinPlugin);
85
- }
86
- function loadFallbackPlugin() {
87
- return new BuiltinPlugin("builtin:load-fallback");
88
- }
89
- function jsonPlugin(config) {
90
- const builtinPlugin = new BuiltinPlugin("builtin:json", config);
91
- return makeBuiltinPluginCallable(builtinPlugin);
92
- }
93
- function buildImportAnalysisPlugin(config) {
94
- return new BuiltinPlugin("builtin:build-import-analysis", config);
95
- }
96
- function viteResolvePlugin(config) {
97
- const builtinPlugin = new BuiltinPlugin("builtin:vite-resolve", config);
98
- return makeBuiltinPluginCallable(builtinPlugin);
99
- }
100
- function isolatedDeclarationPlugin(config) {
101
- return new BuiltinPlugin("builtin:isolated-declaration", config);
102
- }
103
- function assetPlugin(config) {
104
- return new BuiltinPlugin("builtin:asset", config);
105
- }
106
- function webWorkerPostPlugin() {
107
- return new BuiltinPlugin("builtin:web-worker-post");
108
- }
109
- function oxcRuntimePlugin(config) {
110
- return new BuiltinPlugin("builtin:oxc-runtime", config);
111
- }
112
-
113
47
  //#endregion
114
48
  //#region src/log/logging.ts
115
49
  const LOG_LEVEL_SILENT = "silent";
@@ -234,6 +168,75 @@ function normalizeHook(hook) {
234
168
  require_misc.unreachable("Invalid hook type");
235
169
  }
236
170
 
171
+ //#endregion
172
+ //#region src/utils/normalize-string-or-regex.ts
173
+ function normalizedStringOrRegex(pattern) {
174
+ if (!pattern) return void 0;
175
+ if (!isReadonlyArray(pattern)) return [pattern];
176
+ return pattern;
177
+ }
178
+ function isReadonlyArray(input) {
179
+ return Array.isArray(input);
180
+ }
181
+
182
+ //#endregion
183
+ //#region src/builtin-plugin/constructors.ts
184
+ function modulePreloadPolyfillPlugin(config) {
185
+ return new BuiltinPlugin("builtin:module-preload-polyfill", config);
186
+ }
187
+ function dynamicImportVarsPlugin(config) {
188
+ if (config) {
189
+ config.include = normalizedStringOrRegex(config.include);
190
+ config.exclude = normalizedStringOrRegex(config.exclude);
191
+ }
192
+ return new BuiltinPlugin("builtin:dynamic-import-vars", config);
193
+ }
194
+ function importGlobPlugin(config) {
195
+ return new BuiltinPlugin("builtin:import-glob", config);
196
+ }
197
+ function reporterPlugin(config) {
198
+ return new BuiltinPlugin("builtin:reporter", config);
199
+ }
200
+ function manifestPlugin(config) {
201
+ return new BuiltinPlugin("builtin:manifest", config);
202
+ }
203
+ function wasmHelperPlugin(config) {
204
+ return new BuiltinPlugin("builtin:wasm-helper", config);
205
+ }
206
+ function wasmFallbackPlugin() {
207
+ const builtinPlugin = new BuiltinPlugin("builtin:wasm-fallback");
208
+ return makeBuiltinPluginCallable(builtinPlugin);
209
+ }
210
+ function loadFallbackPlugin() {
211
+ return new BuiltinPlugin("builtin:load-fallback");
212
+ }
213
+ function jsonPlugin(config) {
214
+ const builtinPlugin = new BuiltinPlugin("builtin:json", config);
215
+ return makeBuiltinPluginCallable(builtinPlugin);
216
+ }
217
+ function buildImportAnalysisPlugin(config) {
218
+ return new BuiltinPlugin("builtin:build-import-analysis", config);
219
+ }
220
+ function viteResolvePlugin(config) {
221
+ const builtinPlugin = new BuiltinPlugin("builtin:vite-resolve", config);
222
+ return makeBuiltinPluginCallable(builtinPlugin);
223
+ }
224
+ function isolatedDeclarationPlugin(config) {
225
+ return new BuiltinPlugin("builtin:isolated-declaration", config);
226
+ }
227
+ function assetPlugin(config) {
228
+ return new BuiltinPlugin("builtin:asset", config);
229
+ }
230
+ function webWorkerPostPlugin() {
231
+ return new BuiltinPlugin("builtin:web-worker-post");
232
+ }
233
+ function oxcRuntimePlugin(config) {
234
+ return new BuiltinPlugin("builtin:oxc-runtime", config);
235
+ }
236
+ function esmExternalRequirePlugin(config) {
237
+ return new BuiltinPlugin("builtin:esm-external-require", config);
238
+ }
239
+
237
240
  //#endregion
238
241
  //#region src/constants/plugin.ts
239
242
  const ENUMERATED_INPUT_PLUGIN_HOOK_NAMES = [
@@ -1901,7 +1904,7 @@ const TransformOptionsSchema = object({
1901
1904
  typescript: optional(TypescriptSchema),
1902
1905
  helpers: optional(HelpersSchema),
1903
1906
  decorators: optional(DecoratorOptionSchema),
1904
- jsx: optional(JsxOptionsSchema),
1907
+ jsx: optional(union([literal("preserve"), JsxOptionsSchema])),
1905
1908
  target: pipe(optional(union([string(), array(string())])), description("The JavaScript target environment"))
1906
1909
  });
1907
1910
  const WatchOptionsSchema = strictObject({
@@ -1929,7 +1932,8 @@ const ChecksOptionsSchema = strictObject({
1929
1932
  commonJsVariableInEsm: pipe(optional(boolean()), description("Whether to emit warning when detecting common js variable in esm")),
1930
1933
  importIsUndefined: pipe(optional(boolean()), description("Whether to emit warning when detecting import is undefined")),
1931
1934
  emptyImportMeta: pipe(optional(boolean()), description("Whether to emit warning when detecting empty import meta")),
1932
- configurationFieldConflict: pipe(optional(boolean()), description("Whether to emit warning when detecting configuration field conflict"))
1935
+ configurationFieldConflict: pipe(optional(boolean()), description("Whether to emit warning when detecting configuration field conflict")),
1936
+ preferBuiltinFeature: pipe(optional(boolean()), description("Whether to emit warning when detecting prefer builtin feature"))
1933
1937
  });
1934
1938
  const MinifyOptionsSchema = strictObject({
1935
1939
  mangle: optional(boolean()),
@@ -1947,7 +1951,6 @@ const ResolveOptionsSchema = strictObject({
1947
1951
  mainFiles: optional(array(string())),
1948
1952
  modules: optional(array(string())),
1949
1953
  symlinks: optional(boolean()),
1950
- tsconfigFilename: optional(string()),
1951
1954
  yarnPnp: optional(boolean())
1952
1955
  });
1953
1956
  const TreeshakingOptionsSchema = union([boolean(), looseObject({
@@ -2031,7 +2034,8 @@ const InputOptionsSchema = strictObject({
2031
2034
  literal("allow-extension"),
2032
2035
  literal("exports-only"),
2033
2036
  literal(false)
2034
- ])))
2037
+ ]))),
2038
+ tsconfig: pipe(optional(string()), description("Path to the tsconfig.json file."))
2035
2039
  });
2036
2040
  const InputCliOverrideSchema = strictObject({
2037
2041
  input: pipe(optional(array(string())), description("Entry file")),
@@ -2153,7 +2157,8 @@ const OutputOptionsSchema = strictObject({
2153
2157
  preserveModules: pipe(optional(boolean()), description("Preserve module structure")),
2154
2158
  preserveModulesRoot: pipe(optional(string()), description("Put preserved modules under this path at root level")),
2155
2159
  virtualDirname: optional(string()),
2156
- minifyInternalExports: pipe(optional(boolean()), description("Minify internal exports"))
2160
+ minifyInternalExports: pipe(optional(boolean()), description("Minify internal exports")),
2161
+ topLevelVar: pipe(optional(boolean()), description("Rewrite top-level declarations to use `var`."))
2157
2162
  });
2158
2163
  const getAddonDescription = (placement, wrapper) => {
2159
2164
  return `Code to insert the ${ansis.default.bold(placement)} of the bundled file (${ansis.default.bold(wrapper)} the wrapper function)`;
@@ -2607,7 +2612,8 @@ var PluginContextImpl = class extends MinimalPluginContextImpl {
2607
2612
  ...res,
2608
2613
  external: res.external === "relative" ? require_misc.unreachable(`The PluginContext resolve result external couldn't be 'relative'`) : res.external,
2609
2614
  ...info,
2610
- moduleSideEffects: info.moduleSideEffects ?? res.moduleSideEffects ?? null
2615
+ moduleSideEffects: info.moduleSideEffects ?? res.moduleSideEffects ?? null,
2616
+ packageJsonPath: res.packageJsonPath
2611
2617
  };
2612
2618
  }
2613
2619
  emitFile = (file) => {
@@ -2733,7 +2739,8 @@ function bindingifyResolveId(args$1) {
2733
2739
  id: ret.id,
2734
2740
  external: ret.external,
2735
2741
  normalizeExternalId: false,
2736
- moduleSideEffects: exist.moduleSideEffects ?? void 0
2742
+ moduleSideEffects: exist.moduleSideEffects ?? void 0,
2743
+ packageJsonPath: ret.packageJsonPath
2737
2744
  };
2738
2745
  },
2739
2746
  meta: bindingifyPluginHookMeta(meta),
@@ -3440,6 +3447,9 @@ var NormalizedInputOptionsImpl = class {
3440
3447
  get platform() {
3441
3448
  return this.inner.platform;
3442
3449
  }
3450
+ get context() {
3451
+ return this.inner.context;
3452
+ }
3443
3453
  };
3444
3454
 
3445
3455
  //#endregion
@@ -3656,7 +3666,13 @@ var NormalizedOutputOptionsImpl = class {
3656
3666
  return this.outputOptions.sourcemapPathTransform;
3657
3667
  }
3658
3668
  get minify() {
3659
- return this.inner.minify;
3669
+ let ret = this.inner.minify;
3670
+ if (typeof ret === "object" && ret !== null) {
3671
+ delete ret["codegen"];
3672
+ delete ret["module"];
3673
+ delete ret["sourcemap"];
3674
+ }
3675
+ return ret;
3660
3676
  }
3661
3677
  get legalComments() {
3662
3678
  return this.inner.legalComments;
@@ -3840,7 +3856,8 @@ function bindingifyInputOptions(rawPlugins, inputOptions, outputOptions, normali
3840
3856
  markModuleLoaded: pluginContextData.markModuleLoaded.bind(pluginContextData),
3841
3857
  preserveEntrySignatures: bindingifyPreserveEntrySignatures(inputOptions.preserveEntrySignatures),
3842
3858
  optimization: inputOptions.optimization,
3843
- context: inputOptions.context
3859
+ context: inputOptions.context,
3860
+ tsconfig: inputOptions.tsconfig
3844
3861
  };
3845
3862
  }
3846
3863
  function bindingifyHmr(hmr) {
@@ -4109,12 +4126,12 @@ const availableParallelism = () => {
4109
4126
 
4110
4127
  //#endregion
4111
4128
  //#region src/utils/create-bundler-option.ts
4112
- async function createBundlerOptions(inputOptions, outputOptions, watchMode, isClose) {
4129
+ async function createBundlerOptions(inputOptions, outputOptions, watchMode) {
4113
4130
  const inputPlugins = await normalizePluginOption(inputOptions.plugins);
4114
4131
  const outputPlugins = await normalizePluginOption(outputOptions.plugins);
4115
4132
  const logLevel = inputOptions.logLevel || LOG_LEVEL_INFO;
4116
4133
  const onLog = getLogger(getObjectPlugins(inputPlugins), getOnLog(inputOptions, logLevel), logLevel, watchMode);
4117
- if (!isClose) outputOptions = PluginDriver.callOutputOptionsHook([...inputPlugins, ...outputPlugins], outputOptions, onLog, logLevel, watchMode);
4134
+ outputOptions = PluginDriver.callOutputOptionsHook([...inputPlugins, ...outputPlugins], outputOptions, onLog, logLevel, watchMode);
4118
4135
  const normalizedOutputPlugins = await normalizePluginOption(outputOptions.plugins);
4119
4136
  let plugins = [
4120
4137
  ...BUILTIN_PLUGINS,
@@ -4144,8 +4161,8 @@ async function createBundlerOptions(inputOptions, outputOptions, watchMode, isCl
4144
4161
  //#endregion
4145
4162
  //#region src/utils/create-bundler.ts
4146
4163
  let asyncRuntimeShutdown = false;
4147
- async function createBundlerImpl(bundler, inputOptions, outputOptions, isClose) {
4148
- const option = await createBundlerOptions(inputOptions, outputOptions, false, isClose);
4164
+ async function createBundlerImpl(bundler, inputOptions, outputOptions) {
4165
+ const option = await createBundlerOptions(inputOptions, outputOptions, false);
4149
4166
  if (asyncRuntimeShutdown) require_parse_ast_index.startAsyncRuntime();
4150
4167
  try {
4151
4168
  return {
@@ -4186,11 +4203,11 @@ var RolldownBuild = class {
4186
4203
  this.#bundler = new require_parse_ast_index.BindingBundler();
4187
4204
  }
4188
4205
  get closed() {
4189
- return this.#bundlerImpl?.impl.closed ?? false;
4206
+ return this.#bundlerImpl?.impl.closed ?? true;
4190
4207
  }
4191
- async #getBundlerWithStopWorker(outputOptions, isClose) {
4208
+ async #getBundlerWithStopWorker(outputOptions) {
4192
4209
  if (this.#bundlerImpl) await this.#bundlerImpl.stopWorkers?.();
4193
- return this.#bundlerImpl = await createBundlerImpl(this.#bundler, this.#inputOptions, outputOptions, isClose);
4210
+ return this.#bundlerImpl = await createBundlerImpl(this.#bundler, this.#inputOptions, outputOptions);
4194
4211
  }
4195
4212
  async generate(outputOptions = {}) {
4196
4213
  validateOption("output", outputOptions);
@@ -4205,10 +4222,12 @@ var RolldownBuild = class {
4205
4222
  return transformToRollupOutput(output);
4206
4223
  }
4207
4224
  async close() {
4208
- const { impl, stopWorkers, shutdown } = await this.#getBundlerWithStopWorker({}, true);
4209
- await stopWorkers?.();
4210
- await impl.close();
4211
- shutdown();
4225
+ if (this.#bundlerImpl) {
4226
+ await this.#bundlerImpl.stopWorkers?.();
4227
+ await this.#bundlerImpl.impl.close();
4228
+ this.#bundlerImpl.shutdown();
4229
+ this.#bundlerImpl = void 0;
4230
+ }
4212
4231
  }
4213
4232
  async [Symbol.asyncDispose]() {
4214
4233
  await this.close();
@@ -4451,6 +4470,12 @@ Object.defineProperty(exports, 'createBundlerImpl', {
4451
4470
  return createBundlerImpl;
4452
4471
  }
4453
4472
  });
4473
+ Object.defineProperty(exports, 'createBundlerOptions', {
4474
+ enumerable: true,
4475
+ get: function () {
4476
+ return createBundlerOptions;
4477
+ }
4478
+ });
4454
4479
  Object.defineProperty(exports, 'defineConfig', {
4455
4480
  enumerable: true,
4456
4481
  get: function () {
@@ -4469,6 +4494,12 @@ Object.defineProperty(exports, 'dynamicImportVarsPlugin', {
4469
4494
  return dynamicImportVarsPlugin;
4470
4495
  }
4471
4496
  });
4497
+ Object.defineProperty(exports, 'esmExternalRequirePlugin', {
4498
+ enumerable: true,
4499
+ get: function () {
4500
+ return esmExternalRequirePlugin;
4501
+ }
4502
+ });
4472
4503
  Object.defineProperty(exports, 'getInputCliKeys', {
4473
4504
  enumerable: true,
4474
4505
  get: function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rolldown",
3
- "version": "1.0.0-beta.32",
3
+ "version": "1.0.0-beta.34",
4
4
  "description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",
5
5
  "type": "module",
6
6
  "homepage": "https://rolldown.rs/",
@@ -92,10 +92,10 @@
92
92
  "dtsHeader": "type MaybePromise<T> = T | Promise<T>\ntype Nullable<T> = T | null | undefined\ntype VoidNullable<T = void> = T | null | undefined | void\nexport type BindingStringOrRegex = string | RegExp\n\n"
93
93
  },
94
94
  "dependencies": {
95
- "@oxc-project/runtime": "=0.81.0",
96
- "@oxc-project/types": "=0.81.0",
95
+ "@oxc-project/runtime": "=0.82.3",
96
+ "@oxc-project/types": "=0.82.3",
97
97
  "ansis": "^4.0.0",
98
- "@rolldown/pluginutils": "1.0.0-beta.32"
98
+ "@rolldown/pluginutils": "1.0.0-beta.34"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@napi-rs/cli": "^3.1.2",
@@ -108,7 +108,7 @@
108
108
  "emnapi": "^1.2.0",
109
109
  "execa": "^9.2.0",
110
110
  "glob": "^11.0.0",
111
- "oxc-parser": "=0.81.0",
111
+ "oxc-parser": "=0.82.3",
112
112
  "pathe": "^2.0.3",
113
113
  "remeda": "^2.10.0",
114
114
  "rolldown-plugin-dts": "^0.15.0",
@@ -119,24 +119,24 @@
119
119
  "typedoc": "^0.28.0",
120
120
  "typescript": "^5.7.3",
121
121
  "valibot": "1.1.0",
122
- "@rolldown/testing": "0.0.1",
123
- "rolldown": "1.0.0-beta.32"
122
+ "rolldown": "1.0.0-beta.34",
123
+ "@rolldown/testing": "0.0.1"
124
124
  },
125
125
  "optionalDependencies": {
126
- "@rolldown/binding-darwin-x64": "1.0.0-beta.32",
127
- "@rolldown/binding-win32-x64-msvc": "1.0.0-beta.32",
128
- "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.32",
129
- "@rolldown/binding-linux-x64-musl": "1.0.0-beta.32",
130
- "@rolldown/binding-freebsd-x64": "1.0.0-beta.32",
131
- "@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.32",
132
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.32",
133
- "@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.32",
134
- "@rolldown/binding-darwin-arm64": "1.0.0-beta.32",
135
- "@rolldown/binding-linux-arm64-musl": "1.0.0-beta.32",
136
- "@rolldown/binding-openharmony-arm64": "1.0.0-beta.32",
137
- "@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.32",
138
- "@rolldown/binding-android-arm64": "1.0.0-beta.32",
139
- "@rolldown/binding-wasm32-wasi": "1.0.0-beta.32"
126
+ "@rolldown/binding-darwin-x64": "1.0.0-beta.34",
127
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-beta.34",
128
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.34",
129
+ "@rolldown/binding-linux-x64-musl": "1.0.0-beta.34",
130
+ "@rolldown/binding-freebsd-x64": "1.0.0-beta.34",
131
+ "@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.34",
132
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.34",
133
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.34",
134
+ "@rolldown/binding-darwin-arm64": "1.0.0-beta.34",
135
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-beta.34",
136
+ "@rolldown/binding-openharmony-arm64": "1.0.0-beta.34",
137
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.34",
138
+ "@rolldown/binding-android-arm64": "1.0.0-beta.34",
139
+ "@rolldown/binding-wasm32-wasi": "1.0.0-beta.34"
140
140
  },
141
141
  "scripts": {
142
142
  "# Scrips for binding #": "_",