@rolldown/browser 1.0.0-beta.33 → 1.0.0-beta.35
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 +243 -238
- package/dist/cli.mjs +232 -232
- 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.browser.mjs +51 -6
- package/dist/experimental-index.cjs +57 -7
- package/dist/experimental-index.d.cts +45 -4
- package/dist/experimental-index.d.mts +45 -4
- package/dist/experimental-index.mjs +52 -7
- package/dist/filter-index.d.cts +2 -2
- package/dist/filter-index.d.mts +2 -2
- package/dist/index.browser.mjs +1 -1
- 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 +6 -4
- package/dist/parallel-plugin-worker.mjs +3 -3
- 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/rolldown-binding.wasi-browser.js +7 -0
- package/dist/rolldown-binding.wasi.cjs +7 -0
- package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
- package/dist/shared/{binding-CFhvYkVn.d.mts → binding-9k0egz6L.d.mts} +107 -7
- package/dist/shared/{binding-DQk9TN_A.d.cts → binding-D13M6Llu.d.cts} +107 -7
- package/dist/shared/{define-config-B3QOs3Kt.d.cts → define-config-DJXaSinS.d.mts} +90 -24
- package/dist/shared/{define-config-DyjJkNqG.d.mts → define-config-DhrkZ_o7.d.cts} +90 -24
- package/dist/shared/{load-config-CLPLfZVe.mjs → load-config-BCjD-AGJ.mjs} +1 -1
- package/dist/shared/{load-config-xKQFLlGV.cjs → load-config-BJKhRKZL.cjs} +11 -6
- package/dist/shared/{parse-ast-index-BGzB5Bo-.mjs → parse-ast-index-C_CZT4St.mjs} +1 -1
- package/dist/shared/{parse-ast-index-BZfwAN9P.cjs → parse-ast-index-J0xVKZRe.cjs} +3 -2
- package/dist/shared/{prompt-QNI93ne7.cjs → prompt-Q05EYrFb.cjs} +8 -4
- package/dist/shared/{src-CZgQg1yE.mjs → src-B0RCtUy7.mjs} +160 -101
- package/dist/shared/{src-CGziNJPr.cjs → src-Bd4BGX4v.cjs} +193 -116
- package/dist/{src-D_htlJ_o.js → src-C8U06Im1.js} +157 -98
- package/package.json +19 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BindingBuiltinPluginName, BindingBundlerImpl, BindingHmrUpdate, BindingHookResolveIdExtraArgs, BindingRenderedChunk, BindingTransformHookExtraArgs, BindingWatcherEvent, MinifyOptions as MinifyOptions$1, ParserOptions, PreRenderedChunk, TransformOptions } from "./binding-D13M6Llu.cjs";
|
|
2
2
|
import { Program } from "@oxc-project/types";
|
|
3
3
|
import { TopLevelFilterExpression } from "@rolldown/pluginutils";
|
|
4
4
|
|
|
@@ -150,7 +150,7 @@ interface PreRenderedAsset {
|
|
|
150
150
|
}
|
|
151
151
|
type AssetFileNamesFunction = (chunkInfo: PreRenderedAsset) => string;
|
|
152
152
|
type GlobalsFunction = (name: string) => string;
|
|
153
|
-
type MinifyOptions =
|
|
153
|
+
type MinifyOptions = Omit<MinifyOptions$1, "module" | "codegen" | "sourcemap">;
|
|
154
154
|
interface ChunkingContext {
|
|
155
155
|
getModuleInfo(moduleId: string): ModuleInfo | null;
|
|
156
156
|
}
|
|
@@ -186,6 +186,16 @@ interface OutputOptions {
|
|
|
186
186
|
cssEntryFileNames?: string | ChunkFileNamesFunction;
|
|
187
187
|
cssChunkFileNames?: string | ChunkFileNamesFunction;
|
|
188
188
|
sanitizeFileName?: boolean | ((name: string) => string);
|
|
189
|
+
/**
|
|
190
|
+
* Control code minification.
|
|
191
|
+
*
|
|
192
|
+
* - `true`: Enable full minification including code compression and dead code elimination
|
|
193
|
+
* - `false`: Disable minification (default)
|
|
194
|
+
* - `'dce-only'`: Only perform dead code elimination without code compression
|
|
195
|
+
* - `MinifyOptions`: Fine-grained control over minification settings
|
|
196
|
+
*
|
|
197
|
+
* @default false
|
|
198
|
+
*/
|
|
189
199
|
minify?: boolean | "dce-only" | MinifyOptions;
|
|
190
200
|
name?: string;
|
|
191
201
|
globals?: Record<string, string> | GlobalsFunction;
|
|
@@ -574,7 +584,7 @@ interface NormalizedOutputOptions {
|
|
|
574
584
|
sourcemapDebugIds: boolean;
|
|
575
585
|
sourcemapIgnoreList: SourcemapIgnoreListOption;
|
|
576
586
|
sourcemapPathTransform: SourcemapPathTransformOption | undefined;
|
|
577
|
-
minify: false |
|
|
587
|
+
minify: false | MinifyOptions | "dce-only";
|
|
578
588
|
legalComments: "none" | "inline";
|
|
579
589
|
polyfillRequire: boolean;
|
|
580
590
|
plugins: RolldownPlugin[];
|
|
@@ -783,6 +793,8 @@ type TreeshakingOptions = {
|
|
|
783
793
|
manualPureFunctions?: readonly string[];
|
|
784
794
|
unknownGlobalSideEffects?: boolean;
|
|
785
795
|
commonjs?: boolean;
|
|
796
|
+
propertyReadSideEffects?: false | "always";
|
|
797
|
+
propertyWriteSideEffects?: false | "always";
|
|
786
798
|
};
|
|
787
799
|
//#endregion
|
|
788
800
|
//#region src/types/output-bundle.d.ts
|
|
@@ -806,30 +818,16 @@ type SourceMapInput = ExistingRawSourceMap | string | null;
|
|
|
806
818
|
//#region src/index.d.ts
|
|
807
819
|
declare const VERSION: string;
|
|
808
820
|
//#endregion
|
|
809
|
-
//#region src/builtin-plugin/
|
|
821
|
+
//#region src/builtin-plugin/utils.d.ts
|
|
822
|
+
declare const BuiltinClassSymbol: symbol;
|
|
810
823
|
declare class BuiltinPlugin {
|
|
811
824
|
name: BindingBuiltinPluginName;
|
|
812
825
|
_options?: unknown;
|
|
813
826
|
constructor(name: BindingBuiltinPluginName, _options?: unknown);
|
|
814
827
|
}
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
exclude?: StringOrRegExp | StringOrRegExp[];
|
|
819
|
-
};
|
|
820
|
-
declare function dynamicImportVarsPlugin(config?: DynamicImportVarsPluginConfig): BuiltinPlugin;
|
|
821
|
-
declare function importGlobPlugin(config?: BindingImportGlobPluginConfig): BuiltinPlugin;
|
|
822
|
-
declare function reporterPlugin(config?: BindingReporterPluginConfig): BuiltinPlugin;
|
|
823
|
-
declare function manifestPlugin(config?: BindingManifestPluginConfig): BuiltinPlugin;
|
|
824
|
-
declare function wasmHelperPlugin(config?: BindingWasmHelperPluginConfig): BuiltinPlugin;
|
|
825
|
-
declare function wasmFallbackPlugin(): BuiltinPlugin;
|
|
826
|
-
declare function loadFallbackPlugin(): BuiltinPlugin;
|
|
827
|
-
declare function jsonPlugin(config?: BindingJsonPluginConfig): BuiltinPlugin;
|
|
828
|
-
declare function buildImportAnalysisPlugin(config: BindingBuildImportAnalysisPluginConfig): BuiltinPlugin;
|
|
829
|
-
declare function viteResolvePlugin(config: BindingViteResolvePluginConfig): BuiltinPlugin;
|
|
830
|
-
declare function isolatedDeclarationPlugin(config?: BindingIsolatedDeclarationPluginConfig): BuiltinPlugin;
|
|
831
|
-
declare function assetPlugin(config?: BindingAssetPluginConfig): BuiltinPlugin;
|
|
832
|
-
declare function webWorkerPostPlugin(): BuiltinPlugin;
|
|
828
|
+
interface BuiltinPlugin {
|
|
829
|
+
[BuiltinClassSymbol]: boolean;
|
|
830
|
+
}
|
|
833
831
|
//#endregion
|
|
834
832
|
//#region src/constants/plugin.d.ts
|
|
835
833
|
declare const ENUMERATED_INPUT_PLUGIN_HOOK_NAMES: readonly ["options", "buildStart", "resolveId", "load", "transform", "moduleParsed", "buildEnd", "onLog", "resolveDynamicImport", "closeBundle", "closeWatcher", "watchChange"];
|
|
@@ -878,6 +876,7 @@ interface ModuleOptions {
|
|
|
878
876
|
moduleSideEffects: ModuleSideEffects;
|
|
879
877
|
meta: CustomPluginOptions;
|
|
880
878
|
invalidate?: boolean;
|
|
879
|
+
packageJsonPath?: string;
|
|
881
880
|
}
|
|
882
881
|
interface ResolvedId extends ModuleOptions {
|
|
883
882
|
external: boolean | "absolute";
|
|
@@ -1048,6 +1047,11 @@ interface ChecksOptions {
|
|
|
1048
1047
|
* @default true
|
|
1049
1048
|
*/
|
|
1050
1049
|
configurationFieldConflict?: boolean;
|
|
1050
|
+
/**
|
|
1051
|
+
* Whether to emit warning when detecting prefer builtin feature
|
|
1052
|
+
* @default true
|
|
1053
|
+
*/
|
|
1054
|
+
preferBuiltinFeature?: boolean;
|
|
1051
1055
|
}
|
|
1052
1056
|
//#endregion
|
|
1053
1057
|
//#region src/options/input-options.d.ts
|
|
@@ -1072,9 +1076,52 @@ type HmrOptions = boolean | {
|
|
|
1072
1076
|
host?: string;
|
|
1073
1077
|
port?: number;
|
|
1074
1078
|
implement?: string;
|
|
1079
|
+
new?: boolean;
|
|
1075
1080
|
};
|
|
1076
1081
|
type OptimizationOptions = {
|
|
1077
|
-
|
|
1082
|
+
/**
|
|
1083
|
+
* Inline imported constant values during bundling instead of preserving variable references.
|
|
1084
|
+
*
|
|
1085
|
+
* When enabled, constant values from imported modules will be inlined at their usage sites,
|
|
1086
|
+
* potentially reducing bundle size and improving runtime performance by eliminating variable lookups.
|
|
1087
|
+
* **options**:
|
|
1088
|
+
* - `true`: equivalent to `{ mode: 'all', pass: 1 }`, enabling constant inlining for all eligible constants with a single pass.
|
|
1089
|
+
* - `false`: Disable constant inlining
|
|
1090
|
+
* - `{ mode: 'smart' | 'all', pass?: number }`:
|
|
1091
|
+
* - `mode: 'smart'`: Only inline constants in specific scenarios where it is likely to reduce bundle size and improve performance.
|
|
1092
|
+
* Smart mode inlines constants in these specific scenarios:
|
|
1093
|
+
* 1. `if (test) {} else {}` - condition expressions in if statements
|
|
1094
|
+
* 2. `test ? a : b` - condition expressions in ternary operators
|
|
1095
|
+
* 3. `test1 || test2` - logical OR expressions
|
|
1096
|
+
* 4. `test1 && test2` - logical AND expressions
|
|
1097
|
+
* 5. `test1 ?? test2` - nullish coalescing expressions
|
|
1098
|
+
* - `mode: 'all'`: Inline all imported constants wherever they are used.
|
|
1099
|
+
* - `pass`: Number of passes to perform for inlining constants.
|
|
1100
|
+
*
|
|
1101
|
+
* **example**
|
|
1102
|
+
* ```js
|
|
1103
|
+
* // Input files:
|
|
1104
|
+
* // constants.js
|
|
1105
|
+
* export const API_URL = 'https://api.example.com';
|
|
1106
|
+
*
|
|
1107
|
+
* // main.js
|
|
1108
|
+
* import { API_URL } from './constants.js';
|
|
1109
|
+
* console.log(API_URL);
|
|
1110
|
+
*
|
|
1111
|
+
* // With inlineConst: true, the bundled output becomes:
|
|
1112
|
+
* console.log('https://api.example.com');
|
|
1113
|
+
*
|
|
1114
|
+
* // Instead of:
|
|
1115
|
+
* const API_URL = 'https://api.example.com';
|
|
1116
|
+
* console.log(API_URL);
|
|
1117
|
+
* ```
|
|
1118
|
+
*
|
|
1119
|
+
* @default false
|
|
1120
|
+
*/
|
|
1121
|
+
inlineConst?: boolean | {
|
|
1122
|
+
mode?: "all" | "smart";
|
|
1123
|
+
pass?: number;
|
|
1124
|
+
};
|
|
1078
1125
|
};
|
|
1079
1126
|
type AttachDebugOptions = "none" | "simple" | "full";
|
|
1080
1127
|
type ChunkModulesOrder = "exec-order" | "module-id";
|
|
@@ -1112,6 +1159,9 @@ interface InputOptions {
|
|
|
1112
1159
|
mainFiles?: string[];
|
|
1113
1160
|
modules?: string[];
|
|
1114
1161
|
symlinks?: boolean;
|
|
1162
|
+
/**
|
|
1163
|
+
* @deprecated Use the top-level `tsconfig` option instead.
|
|
1164
|
+
*/
|
|
1115
1165
|
tsconfigFilename?: string;
|
|
1116
1166
|
};
|
|
1117
1167
|
cwd?: string;
|
|
@@ -1297,6 +1347,11 @@ interface InputOptions {
|
|
|
1297
1347
|
inject?: Record<string, string | [string, string]>;
|
|
1298
1348
|
profilerNames?: boolean;
|
|
1299
1349
|
/**
|
|
1350
|
+
* @deprecated Use {@link OxcTransformOption.jsx} instead.
|
|
1351
|
+
*
|
|
1352
|
+
* This top-level `jsx` option will be removed in a future release.
|
|
1353
|
+
* It is only kept for backward compatibility and will be mapped internally to `transform.jsx`.
|
|
1354
|
+
*
|
|
1300
1355
|
* - `false` disables the JSX parser, resulting in a syntax error if JSX syntax is used.
|
|
1301
1356
|
* - `"preserve"` disables the JSX transformer, preserving the original JSX syntax in the output.
|
|
1302
1357
|
* - `"react"` enables the `classic` JSX transformer.
|
|
@@ -1334,6 +1389,17 @@ interface InputOptions {
|
|
|
1334
1389
|
preserveEntrySignatures?: false | "strict" | "allow-extension" | "exports-only";
|
|
1335
1390
|
optimization?: OptimizationOptions;
|
|
1336
1391
|
context?: string;
|
|
1392
|
+
/**
|
|
1393
|
+
* Allows you to specify where to find the TypeScript configuration file.
|
|
1394
|
+
*
|
|
1395
|
+
* You may provide:
|
|
1396
|
+
* - a relative path to the configuration file. It will be resolved relative to cwd.
|
|
1397
|
+
* - an absolute path to the configuration file.
|
|
1398
|
+
*
|
|
1399
|
+
* When a tsconfig path is specified, the module resolver will respect `compilerOptions.paths` from the specified `tsconfig.json`,
|
|
1400
|
+
* and the tsconfig options will be merged with the top-level `transform` options, with the `transform` options taking precedence.
|
|
1401
|
+
*/
|
|
1402
|
+
tsconfig?: string;
|
|
1337
1403
|
}
|
|
1338
1404
|
//#endregion
|
|
1339
1405
|
//#region src/types/rolldown-options.d.ts
|
|
@@ -1352,4 +1418,4 @@ declare function defineConfig(config: RolldownOptions): RolldownOptions;
|
|
|
1352
1418
|
declare function defineConfig(config: RolldownOptions[]): RolldownOptions[];
|
|
1353
1419
|
declare function defineConfig(config: ConfigExport): ConfigExport;
|
|
1354
1420
|
//#endregion
|
|
1355
|
-
export { type AddonFunction, type AsyncPluginHooks, type BufferEncoding, type BuildOptions, BuiltinPlugin, type ChunkFileNamesFunction, type ChunkingContext, type ConfigExport, type CustomPluginOptions, type DefineParallelPluginResult, type EmittedAsset, type EmittedFile, type ExistingRawSourceMap, type ExternalOption, type FunctionPluginHooks, type GeneralHookFilter, type GetModuleInfo, type GlobalsFunction, type HookFilter, type HookFilterExtension, type ImportKind, type InputOption, type InputOptions, type InternalModuleFormat, type LoadResult, type LogLevel, type LogLevelOption, type LogOrStringHandler, type LoggingFunction, MaybePromise, type MinifyOptions, type MinimalPluginContext, type ModuleFormat, type ModuleInfo, type ModuleOptions, type ModuleType, type ModuleTypeFilter, type ModuleTypes, type NormalizedInputOptions, type NormalizedOutputOptions, type ObjectHook, type OptimizationOptions, type OutputAsset, type OutputBundle, type OutputChunk, type OutputOptions, type ParallelPluginHooks, type PartialNull, type PartialResolvedId, type Plugin, type PluginContext, type PluginContextMeta, type PreRenderedAsset, type RenderedChunk, type RenderedModule, type ResolveIdExtraOptions, type ResolveIdResult, type ResolvedId, type RolldownBuild, type RolldownDirectoryEntry, type RolldownFileStats, type RolldownFsModule, type RolldownOptions, type RolldownOutput, type RolldownPlugin, type RolldownPluginOption, type RolldownWatcher, type RolldownWatcherEvent, type RollupError, type RollupLog, type RollupLogWithString, type SourceDescription, type SourceMap, type SourceMapInput, type SourcemapIgnoreListOption, type TransformPluginContext, type TransformResult, type TreeshakingOptions, VERSION, type WarningHandlerWithDefault, type WatchOptions, type WatcherOptions,
|
|
1421
|
+
export { type AddonFunction, type AsyncPluginHooks, type BufferEncoding, type BuildOptions, BuiltinPlugin, type ChunkFileNamesFunction, type ChunkingContext, type ConfigExport, type CustomPluginOptions, type DefineParallelPluginResult, type EmittedAsset, type EmittedFile, type ExistingRawSourceMap, type ExternalOption, type FunctionPluginHooks, type GeneralHookFilter, type GetModuleInfo, type GlobalsFunction, type HookFilter, type HookFilterExtension, type ImportKind, type InputOption, type InputOptions, type InternalModuleFormat, type LoadResult, type LogLevel, type LogLevelOption, type LogOrStringHandler, type LoggingFunction, MaybePromise, type MinifyOptions, type MinimalPluginContext, type ModuleFormat, type ModuleInfo, type ModuleOptions, type ModuleType, type ModuleTypeFilter, type ModuleTypes, type NormalizedInputOptions, type NormalizedOutputOptions, type ObjectHook, type OptimizationOptions, type OutputAsset, type OutputBundle, type OutputChunk, type OutputOptions, type ParallelPluginHooks, type PartialNull, type PartialResolvedId, type Plugin, type PluginContext, type PluginContextMeta, type PreRenderedAsset, type RenderedChunk, type RenderedModule, type ResolveIdExtraOptions, type ResolveIdResult, type ResolvedId, type RolldownBuild, type RolldownDirectoryEntry, type RolldownFileStats, type RolldownFsModule, type RolldownOptions, type RolldownOutput, type RolldownPlugin, type RolldownPluginOption, type RolldownWatcher, type RolldownWatcherEvent, type RollupError, type RollupLog, type RollupLogWithString, type SourceDescription, type SourceMap, type SourceMapInput, type SourcemapIgnoreListOption, StringOrRegExp, type TransformPluginContext, type TransformResult, type TreeshakingOptions, VERSION, type WarningHandlerWithDefault, type WatchOptions, type WatcherOptions, build, defineConfig, defineParallelPlugin, rolldown, watch, withFilter };
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-DDkG_k5U.cjs');
|
|
2
|
-
const require_src = require('./src-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
const require_src = require('./src-Bd4BGX4v.cjs');
|
|
3
|
+
let node_path = require("node:path");
|
|
4
|
+
node_path = require_chunk.__toESM(node_path);
|
|
5
|
+
let node_url = require("node:url");
|
|
6
|
+
node_url = require_chunk.__toESM(node_url);
|
|
7
|
+
let node_fs_promises = require("node:fs/promises");
|
|
8
|
+
node_fs_promises = require_chunk.__toESM(node_fs_promises);
|
|
9
|
+
let node_process = require("node:process");
|
|
10
|
+
node_process = require_chunk.__toESM(node_process);
|
|
11
|
+
let node_fs = require("node:fs");
|
|
12
|
+
node_fs = require_chunk.__toESM(node_fs);
|
|
8
13
|
|
|
9
14
|
//#region src/utils/load-config.ts
|
|
10
15
|
async function bundleTsConfig(configFile, isEsm) {
|
|
@@ -186,7 +186,7 @@ function augmentCodeLocation(properties, pos, source, id) {
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
//#endregion
|
|
189
|
-
//#region ../../node_modules/.pnpm/oxc-parser@0.82.
|
|
189
|
+
//#region ../../node_modules/.pnpm/oxc-parser@0.82.3/node_modules/oxc-parser/wrap.mjs
|
|
190
190
|
function wrap$1(result) {
|
|
191
191
|
let program, module, comments, errors;
|
|
192
192
|
return {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-DDkG_k5U.cjs');
|
|
2
|
-
|
|
2
|
+
let src_rolldown_binding_wasi_cjs = require("../rolldown-binding.wasi.cjs");
|
|
3
|
+
src_rolldown_binding_wasi_cjs = require_chunk.__toESM(src_rolldown_binding_wasi_cjs);
|
|
3
4
|
|
|
4
5
|
//#region src/utils/code-frame.ts
|
|
5
6
|
function spaces(index) {
|
|
@@ -187,7 +188,7 @@ function augmentCodeLocation(properties, pos, source, id) {
|
|
|
187
188
|
}
|
|
188
189
|
|
|
189
190
|
//#endregion
|
|
190
|
-
//#region ../../node_modules/.pnpm/oxc-parser@0.82.
|
|
191
|
+
//#region ../../node_modules/.pnpm/oxc-parser@0.82.3/node_modules/oxc-parser/wrap.mjs
|
|
191
192
|
function wrap$1(result) {
|
|
192
193
|
let program, module$1, comments, errors;
|
|
193
194
|
return {
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-DDkG_k5U.cjs');
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
let node_process = require("node:process");
|
|
3
|
+
node_process = require_chunk.__toESM(node_process);
|
|
4
|
+
let node_util = require("node:util");
|
|
5
|
+
node_util = require_chunk.__toESM(node_util);
|
|
6
|
+
let node_tty = require("node:tty");
|
|
7
|
+
node_tty = require_chunk.__toESM(node_tty);
|
|
8
|
+
let node_readline = require("node:readline");
|
|
9
|
+
node_readline = require_chunk.__toESM(node_readline);
|
|
6
10
|
|
|
7
11
|
//#region ../../node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/chunks/prompt.mjs
|
|
8
12
|
function getDefaultExportFromCjs(x$1) {
|