rolldown 1.0.0-beta.10-commit.229c919 → 1.0.0-beta.11-commit.83d4d62
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/cli.cjs +3 -3
- package/dist/cli.mjs +3 -3
- package/dist/config.cjs +3 -3
- package/dist/config.d.cts +2 -2
- package/dist/config.d.mts +2 -2
- package/dist/config.mjs +3 -3
- package/dist/experimental-index.cjs +2 -2
- package/dist/experimental-index.d.cts +2 -2
- package/dist/experimental-index.d.mts +2 -2
- package/dist/experimental-index.mjs +2 -2
- package/dist/filter-index.d.cts +2 -2
- package/dist/filter-index.d.mts +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/parallel-plugin-worker.cjs +2 -2
- package/dist/parallel-plugin-worker.mjs +2 -2
- package/dist/parallel-plugin.d.cts +2 -2
- package/dist/parallel-plugin.d.mts +2 -2
- package/dist/parse-ast-index.cjs +1 -1
- package/dist/parse-ast-index.d.cts +1 -1
- package/dist/parse-ast-index.d.mts +1 -1
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/shared/{binding-BYafUgFF.d.cts → binding-D7RYtfDL.d.mts} +1507 -1526
- package/dist/shared/{binding-CHPrEDXp.d.mts → binding-DqYTl9GE.d.cts} +1507 -1526
- package/dist/shared/{define-config-BL025qn5.d.mts → define-config-BHySodg5.d.cts} +4 -4
- package/dist/shared/{define-config-BetvTt9D.d.cts → define-config-CmJhVwG4.d.mts} +4 -4
- package/dist/shared/{load-config-BnG6NI-q.mjs → load-config-7JeF_9Gz.mjs} +1 -1
- package/dist/shared/{load-config-BE7Wdm_M.cjs → load-config-AzfbVCi0.cjs} +1 -1
- package/dist/shared/{parse-ast-index-D7OUxwJp.cjs → parse-ast-index-Cuw1ssCX.cjs} +20 -20
- package/dist/shared/{parse-ast-index-BkTjw5qC.mjs → parse-ast-index-ivqsbL-R.mjs} +20 -20
- package/dist/shared/{src-CgZfya9m.mjs → src-C1CX2gm4.mjs} +2 -3
- package/dist/shared/{src-CqupDIw6.cjs → src-DtX5ABuU.cjs} +2 -3
- package/package.json +16 -16
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BindingAssetPluginConfig, BindingBuildImportAnalysisPluginConfig, BindingBuiltinPluginName, BindingDynamicImportVarsPluginConfig, BindingHmrOutput, BindingHookResolveIdExtraArgs, BindingImportGlobPluginConfig, BindingIsolatedDeclarationPluginConfig, BindingJsonPluginConfig, BindingManifestPluginConfig, BindingMfManifest, BindingMinifyOptions, BindingModuleFederationPluginOption, BindingRemote, BindingRenderedChunk, BindingReporterPluginConfig, BindingTransformHookExtraArgs, BindingViteResolvePluginConfig, BindingWatcherEvent, Bundler, ParserOptions, PreRenderedChunk, TransformOptions } from "./binding-
|
|
2
|
-
import { TopLevelFilterExpression } from "@rolldown/pluginutils";
|
|
1
|
+
import { BindingAssetPluginConfig, BindingBuildImportAnalysisPluginConfig, BindingBuiltinPluginName, BindingDynamicImportVarsPluginConfig, BindingHmrOutput, BindingHookResolveIdExtraArgs, BindingImportGlobPluginConfig, BindingIsolatedDeclarationPluginConfig, BindingJsonPluginConfig, BindingManifestPluginConfig, BindingMfManifest, BindingMinifyOptions, BindingModuleFederationPluginOption, BindingRemote, BindingRenderedChunk, BindingReporterPluginConfig, BindingTransformHookExtraArgs, BindingViteResolvePluginConfig, BindingWatcherEvent, Bundler, ParserOptions, PreRenderedChunk, TransformOptions } from "./binding-DqYTl9GE.cjs";
|
|
3
2
|
import { Program } from "@oxc-project/types";
|
|
3
|
+
import { TopLevelFilterExpression } from "@rolldown/pluginutils";
|
|
4
4
|
|
|
5
5
|
//#region src/log/logging.d.ts
|
|
6
6
|
type LogLevel = "info" | "debug" | "warn";
|
|
@@ -121,7 +121,7 @@ type MaybeArray<T> = T | T[];
|
|
|
121
121
|
type StringOrRegExp = string | RegExp;
|
|
122
122
|
//#endregion
|
|
123
123
|
//#region src/options/output-options.d.ts
|
|
124
|
-
type ModuleFormat = "es" | "cjs" | "esm" | "module" | "commonjs" | "iife" | "umd"
|
|
124
|
+
type ModuleFormat = "es" | "cjs" | "esm" | "module" | "commonjs" | "iife" | "umd";
|
|
125
125
|
type AddonFunction = (chunk: RenderedChunk) => string | Promise<string>;
|
|
126
126
|
type ChunkFileNamesFunction = (chunkInfo: PreRenderedChunk) => string;
|
|
127
127
|
interface PreRenderedAsset {
|
|
@@ -385,7 +385,7 @@ interface NormalizedInputOptions {
|
|
|
385
385
|
// TODO: I guess we make these getters enumerable so it act more like a plain object
|
|
386
386
|
//#endregion
|
|
387
387
|
//#region src/options/normalized-output-options.d.ts
|
|
388
|
-
type InternalModuleFormat = "es" | "cjs" | "iife" | "umd"
|
|
388
|
+
type InternalModuleFormat = "es" | "cjs" | "iife" | "umd";
|
|
389
389
|
interface NormalizedOutputOptions {
|
|
390
390
|
name: string | undefined;
|
|
391
391
|
file: string | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BindingAssetPluginConfig, BindingBuildImportAnalysisPluginConfig, BindingBuiltinPluginName, BindingDynamicImportVarsPluginConfig, BindingHmrOutput, BindingHookResolveIdExtraArgs, BindingImportGlobPluginConfig, BindingIsolatedDeclarationPluginConfig, BindingJsonPluginConfig, BindingManifestPluginConfig, BindingMfManifest, BindingMinifyOptions, BindingModuleFederationPluginOption, BindingRemote, BindingRenderedChunk, BindingReporterPluginConfig, BindingTransformHookExtraArgs, BindingViteResolvePluginConfig, BindingWatcherEvent, Bundler, ParserOptions, PreRenderedChunk, TransformOptions } from "./binding-
|
|
2
|
-
import { Program } from "@oxc-project/types";
|
|
1
|
+
import { BindingAssetPluginConfig, BindingBuildImportAnalysisPluginConfig, BindingBuiltinPluginName, BindingDynamicImportVarsPluginConfig, BindingHmrOutput, BindingHookResolveIdExtraArgs, BindingImportGlobPluginConfig, BindingIsolatedDeclarationPluginConfig, BindingJsonPluginConfig, BindingManifestPluginConfig, BindingMfManifest, BindingMinifyOptions, BindingModuleFederationPluginOption, BindingRemote, BindingRenderedChunk, BindingReporterPluginConfig, BindingTransformHookExtraArgs, BindingViteResolvePluginConfig, BindingWatcherEvent, Bundler, ParserOptions, PreRenderedChunk, TransformOptions } from "./binding-D7RYtfDL.mjs";
|
|
3
2
|
import { TopLevelFilterExpression } from "@rolldown/pluginutils";
|
|
3
|
+
import { Program } from "@oxc-project/types";
|
|
4
4
|
|
|
5
5
|
//#region src/log/logging.d.ts
|
|
6
6
|
type LogLevel = "info" | "debug" | "warn";
|
|
@@ -121,7 +121,7 @@ type MaybeArray<T> = T | T[];
|
|
|
121
121
|
type StringOrRegExp = string | RegExp;
|
|
122
122
|
//#endregion
|
|
123
123
|
//#region src/options/output-options.d.ts
|
|
124
|
-
type ModuleFormat = "es" | "cjs" | "esm" | "module" | "commonjs" | "iife" | "umd"
|
|
124
|
+
type ModuleFormat = "es" | "cjs" | "esm" | "module" | "commonjs" | "iife" | "umd";
|
|
125
125
|
type AddonFunction = (chunk: RenderedChunk) => string | Promise<string>;
|
|
126
126
|
type ChunkFileNamesFunction = (chunkInfo: PreRenderedChunk) => string;
|
|
127
127
|
interface PreRenderedAsset {
|
|
@@ -385,7 +385,7 @@ interface NormalizedInputOptions {
|
|
|
385
385
|
// TODO: I guess we make these getters enumerable so it act more like a plain object
|
|
386
386
|
//#endregion
|
|
387
387
|
//#region src/options/normalized-output-options.d.ts
|
|
388
|
-
type InternalModuleFormat = "es" | "cjs" | "iife" | "umd"
|
|
388
|
+
type InternalModuleFormat = "es" | "cjs" | "iife" | "umd";
|
|
389
389
|
interface NormalizedOutputOptions {
|
|
390
390
|
name: string | undefined;
|
|
391
391
|
file: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __esm } from "./chunk--iN_1bjD.mjs";
|
|
2
|
-
import { init_rolldown, rolldown } from "./src-
|
|
2
|
+
import { init_rolldown, rolldown } from "./src-C1CX2gm4.mjs";
|
|
3
3
|
import fs from "node:fs";
|
|
4
4
|
import path from "node:path";
|
|
5
5
|
import { pathToFileURL } from "node:url";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-DDkG_k5U.cjs');
|
|
2
|
-
const require_src = require('./src-
|
|
2
|
+
const require_src = require('./src-DtX5ABuU.cjs');
|
|
3
3
|
const node_fs = require_chunk.__toESM(require("node:fs"));
|
|
4
4
|
const node_path = require_chunk.__toESM(require("node:path"));
|
|
5
5
|
const node_url = require_chunk.__toESM(require("node:url"));
|
|
@@ -328,6 +328,26 @@ var require_binding = require_chunk.__commonJS({ "src/binding.js"(exports, modul
|
|
|
328
328
|
throw new Error(`Failed to load native binding`);
|
|
329
329
|
}
|
|
330
330
|
module.exports = nativeBinding;
|
|
331
|
+
module.exports.Severity = nativeBinding.Severity;
|
|
332
|
+
module.exports.ParseResult = nativeBinding.ParseResult;
|
|
333
|
+
module.exports.ExportExportNameKind = nativeBinding.ExportExportNameKind;
|
|
334
|
+
module.exports.ExportImportNameKind = nativeBinding.ExportImportNameKind;
|
|
335
|
+
module.exports.ExportLocalNameKind = nativeBinding.ExportLocalNameKind;
|
|
336
|
+
module.exports.getBufferOffset = nativeBinding.getBufferOffset;
|
|
337
|
+
module.exports.ImportNameKind = nativeBinding.ImportNameKind;
|
|
338
|
+
module.exports.parseAsync = nativeBinding.parseAsync;
|
|
339
|
+
module.exports.parseAsyncRaw = nativeBinding.parseAsyncRaw;
|
|
340
|
+
module.exports.parseSync = nativeBinding.parseSync;
|
|
341
|
+
module.exports.parseSyncRaw = nativeBinding.parseSyncRaw;
|
|
342
|
+
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
343
|
+
module.exports.ResolverFactory = nativeBinding.ResolverFactory;
|
|
344
|
+
module.exports.EnforceExtension = nativeBinding.EnforceExtension;
|
|
345
|
+
module.exports.ModuleType = nativeBinding.ModuleType;
|
|
346
|
+
module.exports.sync = nativeBinding.sync;
|
|
347
|
+
module.exports.HelperMode = nativeBinding.HelperMode;
|
|
348
|
+
module.exports.isolatedDeclaration = nativeBinding.isolatedDeclaration;
|
|
349
|
+
module.exports.moduleRunnerTransform = nativeBinding.moduleRunnerTransform;
|
|
350
|
+
module.exports.transform = nativeBinding.transform;
|
|
331
351
|
module.exports.BindingBundleEndEventData = nativeBinding.BindingBundleEndEventData;
|
|
332
352
|
module.exports.BindingBundleErrorEventData = nativeBinding.BindingBundleErrorEventData;
|
|
333
353
|
module.exports.BindingCallableBuiltinPlugin = nativeBinding.BindingCallableBuiltinPlugin;
|
|
@@ -347,35 +367,15 @@ var require_binding = require_chunk.__commonJS({ "src/binding.js"(exports, modul
|
|
|
347
367
|
module.exports.BindingWatcherEvent = nativeBinding.BindingWatcherEvent;
|
|
348
368
|
module.exports.Bundler = nativeBinding.Bundler;
|
|
349
369
|
module.exports.ParallelJsPluginRegistry = nativeBinding.ParallelJsPluginRegistry;
|
|
350
|
-
module.exports.ParseResult = nativeBinding.ParseResult;
|
|
351
|
-
module.exports.ResolverFactory = nativeBinding.ResolverFactory;
|
|
352
370
|
module.exports.BindingBuiltinPluginName = nativeBinding.BindingBuiltinPluginName;
|
|
353
371
|
module.exports.BindingHookSideEffects = nativeBinding.BindingHookSideEffects;
|
|
354
372
|
module.exports.BindingJsx = nativeBinding.BindingJsx;
|
|
355
373
|
module.exports.BindingLogLevel = nativeBinding.BindingLogLevel;
|
|
356
374
|
module.exports.BindingPluginOrder = nativeBinding.BindingPluginOrder;
|
|
357
|
-
module.exports.EnforceExtension = nativeBinding.EnforceExtension;
|
|
358
|
-
module.exports.ExportExportNameKind = nativeBinding.ExportExportNameKind;
|
|
359
|
-
module.exports.ExportImportNameKind = nativeBinding.ExportImportNameKind;
|
|
360
|
-
module.exports.ExportLocalNameKind = nativeBinding.ExportLocalNameKind;
|
|
361
375
|
module.exports.FilterTokenKind = nativeBinding.FilterTokenKind;
|
|
362
|
-
module.exports.getBufferOffset = nativeBinding.getBufferOffset;
|
|
363
|
-
module.exports.HelperMode = nativeBinding.HelperMode;
|
|
364
|
-
module.exports.ImportNameKind = nativeBinding.ImportNameKind;
|
|
365
|
-
module.exports.isolatedDeclaration = nativeBinding.isolatedDeclaration;
|
|
366
|
-
module.exports.moduleRunnerTransform = nativeBinding.moduleRunnerTransform;
|
|
367
|
-
module.exports.ModuleType = nativeBinding.ModuleType;
|
|
368
|
-
module.exports.parseAsync = nativeBinding.parseAsync;
|
|
369
|
-
module.exports.parseAsyncRaw = nativeBinding.parseAsyncRaw;
|
|
370
|
-
module.exports.parseSync = nativeBinding.parseSync;
|
|
371
|
-
module.exports.parseSyncRaw = nativeBinding.parseSyncRaw;
|
|
372
|
-
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
373
376
|
module.exports.registerPlugins = nativeBinding.registerPlugins;
|
|
374
|
-
module.exports.Severity = nativeBinding.Severity;
|
|
375
377
|
module.exports.shutdownAsyncRuntime = nativeBinding.shutdownAsyncRuntime;
|
|
376
378
|
module.exports.startAsyncRuntime = nativeBinding.startAsyncRuntime;
|
|
377
|
-
module.exports.sync = nativeBinding.sync;
|
|
378
|
-
module.exports.transform = nativeBinding.transform;
|
|
379
379
|
} });
|
|
380
380
|
|
|
381
381
|
//#endregion
|
|
@@ -328,6 +328,26 @@ var require_binding = __commonJS({ "src/binding.js"(exports, module) {
|
|
|
328
328
|
throw new Error(`Failed to load native binding`);
|
|
329
329
|
}
|
|
330
330
|
module.exports = nativeBinding;
|
|
331
|
+
module.exports.Severity = nativeBinding.Severity;
|
|
332
|
+
module.exports.ParseResult = nativeBinding.ParseResult;
|
|
333
|
+
module.exports.ExportExportNameKind = nativeBinding.ExportExportNameKind;
|
|
334
|
+
module.exports.ExportImportNameKind = nativeBinding.ExportImportNameKind;
|
|
335
|
+
module.exports.ExportLocalNameKind = nativeBinding.ExportLocalNameKind;
|
|
336
|
+
module.exports.getBufferOffset = nativeBinding.getBufferOffset;
|
|
337
|
+
module.exports.ImportNameKind = nativeBinding.ImportNameKind;
|
|
338
|
+
module.exports.parseAsync = nativeBinding.parseAsync;
|
|
339
|
+
module.exports.parseAsyncRaw = nativeBinding.parseAsyncRaw;
|
|
340
|
+
module.exports.parseSync = nativeBinding.parseSync;
|
|
341
|
+
module.exports.parseSyncRaw = nativeBinding.parseSyncRaw;
|
|
342
|
+
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
343
|
+
module.exports.ResolverFactory = nativeBinding.ResolverFactory;
|
|
344
|
+
module.exports.EnforceExtension = nativeBinding.EnforceExtension;
|
|
345
|
+
module.exports.ModuleType = nativeBinding.ModuleType;
|
|
346
|
+
module.exports.sync = nativeBinding.sync;
|
|
347
|
+
module.exports.HelperMode = nativeBinding.HelperMode;
|
|
348
|
+
module.exports.isolatedDeclaration = nativeBinding.isolatedDeclaration;
|
|
349
|
+
module.exports.moduleRunnerTransform = nativeBinding.moduleRunnerTransform;
|
|
350
|
+
module.exports.transform = nativeBinding.transform;
|
|
331
351
|
module.exports.BindingBundleEndEventData = nativeBinding.BindingBundleEndEventData;
|
|
332
352
|
module.exports.BindingBundleErrorEventData = nativeBinding.BindingBundleErrorEventData;
|
|
333
353
|
module.exports.BindingCallableBuiltinPlugin = nativeBinding.BindingCallableBuiltinPlugin;
|
|
@@ -347,35 +367,15 @@ var require_binding = __commonJS({ "src/binding.js"(exports, module) {
|
|
|
347
367
|
module.exports.BindingWatcherEvent = nativeBinding.BindingWatcherEvent;
|
|
348
368
|
module.exports.Bundler = nativeBinding.Bundler;
|
|
349
369
|
module.exports.ParallelJsPluginRegistry = nativeBinding.ParallelJsPluginRegistry;
|
|
350
|
-
module.exports.ParseResult = nativeBinding.ParseResult;
|
|
351
|
-
module.exports.ResolverFactory = nativeBinding.ResolverFactory;
|
|
352
370
|
module.exports.BindingBuiltinPluginName = nativeBinding.BindingBuiltinPluginName;
|
|
353
371
|
module.exports.BindingHookSideEffects = nativeBinding.BindingHookSideEffects;
|
|
354
372
|
module.exports.BindingJsx = nativeBinding.BindingJsx;
|
|
355
373
|
module.exports.BindingLogLevel = nativeBinding.BindingLogLevel;
|
|
356
374
|
module.exports.BindingPluginOrder = nativeBinding.BindingPluginOrder;
|
|
357
|
-
module.exports.EnforceExtension = nativeBinding.EnforceExtension;
|
|
358
|
-
module.exports.ExportExportNameKind = nativeBinding.ExportExportNameKind;
|
|
359
|
-
module.exports.ExportImportNameKind = nativeBinding.ExportImportNameKind;
|
|
360
|
-
module.exports.ExportLocalNameKind = nativeBinding.ExportLocalNameKind;
|
|
361
375
|
module.exports.FilterTokenKind = nativeBinding.FilterTokenKind;
|
|
362
|
-
module.exports.getBufferOffset = nativeBinding.getBufferOffset;
|
|
363
|
-
module.exports.HelperMode = nativeBinding.HelperMode;
|
|
364
|
-
module.exports.ImportNameKind = nativeBinding.ImportNameKind;
|
|
365
|
-
module.exports.isolatedDeclaration = nativeBinding.isolatedDeclaration;
|
|
366
|
-
module.exports.moduleRunnerTransform = nativeBinding.moduleRunnerTransform;
|
|
367
|
-
module.exports.ModuleType = nativeBinding.ModuleType;
|
|
368
|
-
module.exports.parseAsync = nativeBinding.parseAsync;
|
|
369
|
-
module.exports.parseAsyncRaw = nativeBinding.parseAsyncRaw;
|
|
370
|
-
module.exports.parseSync = nativeBinding.parseSync;
|
|
371
|
-
module.exports.parseSyncRaw = nativeBinding.parseSyncRaw;
|
|
372
|
-
module.exports.rawTransferSupported = nativeBinding.rawTransferSupported;
|
|
373
376
|
module.exports.registerPlugins = nativeBinding.registerPlugins;
|
|
374
|
-
module.exports.Severity = nativeBinding.Severity;
|
|
375
377
|
module.exports.shutdownAsyncRuntime = nativeBinding.shutdownAsyncRuntime;
|
|
376
378
|
module.exports.startAsyncRuntime = nativeBinding.startAsyncRuntime;
|
|
377
|
-
module.exports.sync = nativeBinding.sync;
|
|
378
|
-
module.exports.transform = nativeBinding.transform;
|
|
379
379
|
} });
|
|
380
380
|
|
|
381
381
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __esm, __toESM } from "./chunk--iN_1bjD.mjs";
|
|
2
|
-
import { augmentCodeLocation, error, init_logs, init_parse_ast_index, logCycleLoading, logInputHookInOutputPlugin, logInvalidLogPosition, logMultiplyNotifyOption, logPluginError, parseAst, require_binding } from "./parse-ast-index-
|
|
2
|
+
import { augmentCodeLocation, error, init_logs, init_parse_ast_index, logCycleLoading, logInputHookInOutputPlugin, logInvalidLogPosition, logMultiplyNotifyOption, logPluginError, parseAst, require_binding } from "./parse-ast-index-ivqsbL-R.mjs";
|
|
3
3
|
import { arraify, init_misc, isNullish, noop, unimplemented, unreachable, unsupported } from "./misc-DGAe2XOW.mjs";
|
|
4
4
|
import path from "node:path";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
@@ -9,7 +9,7 @@ import os from "node:os";
|
|
|
9
9
|
import { Worker } from "node:worker_threads";
|
|
10
10
|
|
|
11
11
|
//#region package.json
|
|
12
|
-
var version = "1.0.0-beta.
|
|
12
|
+
var version = "1.0.0-beta.11-commit.83d4d62";
|
|
13
13
|
var description$1 = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
|
|
14
14
|
|
|
15
15
|
//#endregion
|
|
@@ -3120,7 +3120,6 @@ function bindingifyFormat(format) {
|
|
|
3120
3120
|
case "commonjs": return "cjs";
|
|
3121
3121
|
case "iife": return "iife";
|
|
3122
3122
|
case "umd": return "umd";
|
|
3123
|
-
case "experimental-app": return "app";
|
|
3124
3123
|
default: unimplemented(`output.format: ${format}`);
|
|
3125
3124
|
}
|
|
3126
3125
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-DDkG_k5U.cjs');
|
|
2
|
-
const require_parse_ast_index = require('./parse-ast-index-
|
|
2
|
+
const require_parse_ast_index = require('./parse-ast-index-Cuw1ssCX.cjs');
|
|
3
3
|
const require_misc = require('./misc-BKp5iIef.cjs');
|
|
4
4
|
const node_path = require_chunk.__toESM(require("node:path"));
|
|
5
5
|
const node_url = require_chunk.__toESM(require("node:url"));
|
|
@@ -9,7 +9,7 @@ const node_os = require_chunk.__toESM(require("node:os"));
|
|
|
9
9
|
const node_worker_threads = require_chunk.__toESM(require("node:worker_threads"));
|
|
10
10
|
|
|
11
11
|
//#region package.json
|
|
12
|
-
var version = "1.0.0-beta.
|
|
12
|
+
var version = "1.0.0-beta.11-commit.83d4d62";
|
|
13
13
|
var description$1 = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
|
|
14
14
|
|
|
15
15
|
//#endregion
|
|
@@ -2999,7 +2999,6 @@ function bindingifyFormat(format) {
|
|
|
2999
2999
|
case "commonjs": return "cjs";
|
|
3000
3000
|
case "iife": return "iife";
|
|
3001
3001
|
case "umd": return "umd";
|
|
3002
|
-
case "experimental-app": return "app";
|
|
3003
3002
|
default: require_misc.unimplemented(`output.format: ${format}`);
|
|
3004
3003
|
}
|
|
3005
3004
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rolldown",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.11-commit.83d4d62",
|
|
4
4
|
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"homepage": "https://rolldown.rs/",
|
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
"@oxc-project/runtime": "=0.72.2",
|
|
94
94
|
"@oxc-project/types": "=0.72.2",
|
|
95
95
|
"ansis": "^4.0.0",
|
|
96
|
-
"@rolldown/pluginutils": "1.0.0-beta.
|
|
96
|
+
"@rolldown/pluginutils": "1.0.0-beta.11-commit.83d4d62"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@napi-rs/cli": "3.0.0-alpha.
|
|
99
|
+
"@napi-rs/cli": "3.0.0-alpha.84",
|
|
100
100
|
"@napi-rs/wasm-runtime": "^0.2.10",
|
|
101
101
|
"@oxc-node/cli": "^0.0.27",
|
|
102
102
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -118,21 +118,21 @@
|
|
|
118
118
|
"typescript": "^5.7.3",
|
|
119
119
|
"valibot": "1.1.0",
|
|
120
120
|
"@rolldown/testing": "0.0.1",
|
|
121
|
-
"rolldown": "1.0.0-beta.
|
|
121
|
+
"rolldown": "1.0.0-beta.11-commit.83d4d62"
|
|
122
122
|
},
|
|
123
123
|
"optionalDependencies": {
|
|
124
|
-
"@rolldown/binding-darwin-arm64": "1.0.0-beta.
|
|
125
|
-
"@rolldown/binding-darwin-x64": "1.0.0-beta.
|
|
126
|
-
"@rolldown/binding-
|
|
127
|
-
"@rolldown/binding-
|
|
128
|
-
"@rolldown/binding-linux-
|
|
129
|
-
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.
|
|
130
|
-
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.
|
|
131
|
-
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.
|
|
132
|
-
"@rolldown/binding-
|
|
133
|
-
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.
|
|
134
|
-
"@rolldown/binding-win32-
|
|
135
|
-
"@rolldown/binding-
|
|
124
|
+
"@rolldown/binding-darwin-arm64": "1.0.0-beta.11-commit.83d4d62",
|
|
125
|
+
"@rolldown/binding-darwin-x64": "1.0.0-beta.11-commit.83d4d62",
|
|
126
|
+
"@rolldown/binding-freebsd-x64": "1.0.0-beta.11-commit.83d4d62",
|
|
127
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.11-commit.83d4d62",
|
|
128
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.11-commit.83d4d62",
|
|
129
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.11-commit.83d4d62",
|
|
130
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.11-commit.83d4d62",
|
|
131
|
+
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.11-commit.83d4d62",
|
|
132
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.11-commit.83d4d62",
|
|
133
|
+
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.11-commit.83d4d62",
|
|
134
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.0-beta.11-commit.83d4d62",
|
|
135
|
+
"@rolldown/binding-wasm32-wasi": "1.0.0-beta.11-commit.83d4d62"
|
|
136
136
|
},
|
|
137
137
|
"scripts": {
|
|
138
138
|
"# Scrips for binding #": "_",
|