rolldown 1.2.2 → 1.2.4

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 (30) hide show
  1. package/dist/cli.mjs +14 -10
  2. package/dist/config.d.mts +1 -1
  3. package/dist/config.mjs +2 -2
  4. package/dist/experimental-index.d.mts +2 -2
  5. package/dist/experimental-index.mjs +8 -8
  6. package/dist/filter-index.d.mts +1 -1
  7. package/dist/index.d.mts +1 -1
  8. package/dist/index.mjs +4 -4
  9. package/dist/parallel-plugin-worker.mjs +2 -2
  10. package/dist/parallel-plugin.d.mts +1 -1
  11. package/dist/parse-ast-index.mjs +1 -1
  12. package/dist/plugins-index.d.mts +2 -2
  13. package/dist/plugins-index.mjs +2 -2
  14. package/dist/shared/binding-Zhafd14U.mjs +673 -0
  15. package/dist/shared/{bindingify-input-options-BHixd47T.mjs → bindingify-input-options-C-Zsy1EG.mjs} +6 -10
  16. package/dist/shared/{constructors-ALilxAii.d.mts → constructors-CGzna3vk.d.mts} +1 -1
  17. package/dist/shared/{constructors-COwFYQna.mjs → constructors-u6EEiG8n.mjs} +1 -1
  18. package/dist/shared/{create-bundler-option-LuUKlAT7.mjs → create-bundler-option-wRiQzEJ3.mjs} +3 -3
  19. package/dist/shared/{define-config-DSMNXceb.d.mts → define-config-Dsp5YQR4.d.mts} +3 -6
  20. package/dist/shared/{error-nLggAzpQ.mjs → error-CVc7IgvG.mjs} +1 -1
  21. package/dist/shared/{load-config-cRWJAHTc.mjs → load-config-63nAW5KO.mjs} +1 -1
  22. package/dist/shared/{normalize-string-or-regex-Cj-DgIV1.mjs → normalize-string-or-regex-BxRYnPRv.mjs} +1 -1
  23. package/dist/shared/{parse-C17W7W5g.mjs → parse-DnWvq9XZ.mjs} +2 -2
  24. package/dist/shared/{resolve-tsconfig-CE3HNSOK.mjs → resolve-tsconfig-SPewz4V3.mjs} +2 -2
  25. package/dist/shared/{rolldown-D23fYgSS.mjs → rolldown-DiYVDns9.mjs} +4 -4
  26. package/dist/shared/{watch-DcgK_L55.mjs → watch-BNCfUBmW.mjs} +5 -5
  27. package/dist/utils-index.d.mts +1 -1
  28. package/dist/utils-index.mjs +15 -13
  29. package/package.json +22 -21
  30. package/dist/shared/binding-DwUQWZOo.mjs +0 -662
package/dist/cli.mjs CHANGED
@@ -1,9 +1,9 @@
1
- import { n as onExit, t as watch } from "./shared/watch-DcgK_L55.mjs";
2
- import { D as version, E as description } from "./shared/bindingify-input-options-BHixd47T.mjs";
1
+ import { n as onExit, t as watch } from "./shared/watch-BNCfUBmW.mjs";
2
+ import { D as version, E as description } from "./shared/bindingify-input-options-C-Zsy1EG.mjs";
3
3
  import { t as arraify } from "./shared/misc-DOSKtd97.mjs";
4
- import { a as getOutputCliKeys, c as styleText, i as getInputCliKeys, n as logger, o as validateCliOptions, r as getCliSchemaInfo } from "./shared/create-bundler-option-LuUKlAT7.mjs";
5
- import { t as rolldown } from "./shared/rolldown-D23fYgSS.mjs";
6
- import { t as loadConfig } from "./shared/load-config-cRWJAHTc.mjs";
4
+ import { a as getOutputCliKeys, c as styleText, i as getInputCliKeys, n as logger, o as validateCliOptions, r as getCliSchemaInfo } from "./shared/create-bundler-option-wRiQzEJ3.mjs";
5
+ import { t as rolldown } from "./shared/rolldown-DiYVDns9.mjs";
6
+ import { t as loadConfig } from "./shared/load-config-63nAW5KO.mjs";
7
7
  import path from "node:path";
8
8
  import g$1 from "node:process";
9
9
  import { performance } from "node:perf_hooks";
@@ -719,8 +719,10 @@ function normalizeCliOptions(cliOptions, positionals) {
719
719
  process.exit(1);
720
720
  }
721
721
  }
722
- if (!result.config && positionals.length > 0) if (Array.isArray(result.input.input)) result.input.input.push(...positionals);
723
- else result.input.input = positionals;
722
+ if (!result.config && positionals.length > 0) {
723
+ if (Array.isArray(result.input.input)) result.input.input.push(...positionals);
724
+ else result.input.input = positionals;
725
+ }
724
726
  return result;
725
727
  }
726
728
  //#endregion
@@ -769,8 +771,10 @@ function parseCliArguments() {
769
771
  if (config?.abbreviation) rawName += `-${config.abbreviation}, `;
770
772
  if (config?.reverse) rawName += `--no-${key}`;
771
773
  else rawName += `--${key}`;
772
- if (info.type !== "boolean" && !config?.reverse) if (config?.requireValue) rawName += ` <${config?.hint ?? key}>`;
773
- else rawName += ` [${config?.hint ?? key}]`;
774
+ if (info.type !== "boolean" && !config?.reverse) {
775
+ if (config?.requireValue) rawName += ` <${config?.hint ?? key}>`;
776
+ else rawName += ` [${config?.hint ?? key}]`;
777
+ }
774
778
  cli.option(rawName, info.description ?? config?.description ?? "");
775
779
  }
776
780
  let parsedInput = [];
@@ -862,7 +866,7 @@ function getClearScreenFunction(options) {
862
866
  };
863
867
  }
864
868
  //#endregion
865
- //#region \0@oxc-project+runtime@0.142.0/helpers/esm/usingCtx.js
869
+ //#region \0@oxc-project+runtime@0.144.0/helpers/esm/usingCtx.js
866
870
  function _usingCtx() {
867
871
  var r = "function" == typeof SuppressedError ? SuppressedError : function(r, e) {
868
872
  var n = Error();
package/dist/config.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { R as VERSION, r as defineConfig, t as ConfigExport } from "./shared/define-config-DSMNXceb.mjs";
1
+ import { R as VERSION, r as defineConfig, t as ConfigExport } from "./shared/define-config-Dsp5YQR4.mjs";
2
2
  //#region src/utils/load-config.d.ts
3
3
  type ConfigLoader = "bundle" | "native";
4
4
  interface LoadConfigOptions {
package/dist/config.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { T as VERSION } from "./shared/bindingify-input-options-BHixd47T.mjs";
1
+ import { T as VERSION } from "./shared/bindingify-input-options-C-Zsy1EG.mjs";
2
2
  import { t as defineConfig } from "./shared/define-config-Demdg3_4.mjs";
3
- import { t as loadConfig } from "./shared/load-config-cRWJAHTc.mjs";
3
+ import { t as loadConfig } from "./shared/load-config-63nAW5KO.mjs";
4
4
  export { VERSION, defineConfig, loadConfig };
@@ -1,7 +1,7 @@
1
1
  import { H as ResolverFactory, J as moduleRunnerTransform, K as isolatedDeclaration, L as NapiResolveOptions, M as IsolatedDeclarationsOptions, N as IsolatedDeclarationsResult, V as ResolveResult, _ as BindingTsconfigCompilerOptions, i as BindingClientHmrUpdate, k as BindingViteTransformPluginConfig, n as BindingBundleAnalyzerPluginConfig, p as BindingRebuildStrategy, q as isolatedDeclarationSync, r as BindingBundleState, u as BindingLazyChunkOutput, v as BindingTsconfigRawOptions, w as BindingViteManifestPluginConfig } from "./shared/binding-CVtkJvyl.mjs";
2
- import { $ as defineParallelPlugin, Gt as StringOrRegExp, I as BuiltinPlugin, Qt as freeExternalMemory, Vt as OutputOptions, Xt as RolldownOutput, l as InputOptions, ut as NormalizedOutputOptions } from "./shared/define-config-DSMNXceb.mjs";
2
+ import { $ as defineParallelPlugin, Gt as StringOrRegExp, I as BuiltinPlugin, Qt as freeExternalMemory, Vt as OutputOptions, Xt as RolldownOutput, l as InputOptions, ut as NormalizedOutputOptions } from "./shared/define-config-Dsp5YQR4.mjs";
3
3
  import { a as MinifyOptions$1, c as minifySync$1, d as parse$1, f as parseSync$1, i as transformSync$1, l as ParseResult$1, m as resolveTsconfig, n as TransformResult$1, o as MinifyResult$1, p as TsconfigCache$1, r as transform$1, s as minify$1, t as TransformOptions$1, u as ParserOptions$1 } from "./shared/transform-WmU_cI8e.mjs";
4
- import { a as viteDynamicImportVarsPlugin, c as viteLoadFallbackPlugin, d as viteReporterPlugin, f as viteResolvePlugin, i as viteBuildImportAnalysisPlugin, l as viteModulePreloadPolyfillPlugin, n as isolatedDeclarationPlugin, o as viteImportGlobPlugin, p as viteWebWorkerPostPlugin, r as oxcRuntimePlugin, s as viteJsonPlugin, u as viteReactRefreshWrapperPlugin } from "./shared/constructors-ALilxAii.mjs";
4
+ import { a as viteDynamicImportVarsPlugin, c as viteLoadFallbackPlugin, d as viteReporterPlugin, f as viteResolvePlugin, i as viteBuildImportAnalysisPlugin, l as viteModulePreloadPolyfillPlugin, n as isolatedDeclarationPlugin, o as viteImportGlobPlugin, p as viteWebWorkerPostPlugin, r as oxcRuntimePlugin, s as viteJsonPlugin, u as viteReactRefreshWrapperPlugin } from "./shared/constructors-CGzna3vk.mjs";
5
5
  //#region src/api/dev/dev-options.d.ts
6
6
  type DevOnHmrUpdates = (result: Error | {
7
7
  updates: BindingClientHmrUpdate[];
@@ -1,11 +1,11 @@
1
- import { n as __toESM, t as require_binding } from "./shared/binding-DwUQWZOo.mjs";
2
- import { n as BuiltinPlugin, t as normalizedStringOrRegex } from "./shared/normalize-string-or-regex-Cj-DgIV1.mjs";
3
- import { u as transformToRollupOutput } from "./shared/bindingify-input-options-BHixd47T.mjs";
4
- import { l as PluginDriver, s as validateOption, t as createBundlerOptions } from "./shared/create-bundler-option-LuUKlAT7.mjs";
5
- import { i as unwrapBindingResult, r as normalizeBindingResult } from "./shared/error-nLggAzpQ.mjs";
6
- import { n as parseSync$1, t as parse$1 } from "./shared/parse-C17W7W5g.mjs";
7
- import { a as viteDynamicImportVarsPlugin, c as viteLoadFallbackPlugin, d as viteReporterPlugin, f as viteResolvePlugin, i as viteBuildImportAnalysisPlugin, l as viteModulePreloadPolyfillPlugin, n as isolatedDeclarationPlugin, o as viteImportGlobPlugin, p as viteWebWorkerPostPlugin, r as oxcRuntimePlugin, s as viteJsonPlugin, u as viteReactRefreshWrapperPlugin } from "./shared/constructors-COwFYQna.mjs";
8
- import { a as minify$1, i as transformSync$1, n as resolveTsconfig, o as minifySync$1, r as transform$1, t as TsconfigCache$1 } from "./shared/resolve-tsconfig-CE3HNSOK.mjs";
1
+ import { n as __toESM, t as require_binding } from "./shared/binding-Zhafd14U.mjs";
2
+ import { n as BuiltinPlugin, t as normalizedStringOrRegex } from "./shared/normalize-string-or-regex-BxRYnPRv.mjs";
3
+ import { u as transformToRollupOutput } from "./shared/bindingify-input-options-C-Zsy1EG.mjs";
4
+ import { l as PluginDriver, s as validateOption, t as createBundlerOptions } from "./shared/create-bundler-option-wRiQzEJ3.mjs";
5
+ import { i as unwrapBindingResult, r as normalizeBindingResult } from "./shared/error-CVc7IgvG.mjs";
6
+ import { n as parseSync$1, t as parse$1 } from "./shared/parse-DnWvq9XZ.mjs";
7
+ import { a as viteDynamicImportVarsPlugin, c as viteLoadFallbackPlugin, d as viteReporterPlugin, f as viteResolvePlugin, i as viteBuildImportAnalysisPlugin, l as viteModulePreloadPolyfillPlugin, n as isolatedDeclarationPlugin, o as viteImportGlobPlugin, p as viteWebWorkerPostPlugin, r as oxcRuntimePlugin, s as viteJsonPlugin, u as viteReactRefreshWrapperPlugin } from "./shared/constructors-u6EEiG8n.mjs";
8
+ import { a as minify$1, i as transformSync$1, n as resolveTsconfig, o as minifySync$1, r as transform$1, t as TsconfigCache$1 } from "./shared/resolve-tsconfig-SPewz4V3.mjs";
9
9
  import { pathToFileURL } from "node:url";
10
10
  //#region src/api/dev/dev-engine.ts
11
11
  var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
@@ -1,4 +1,4 @@
1
- import { F as withFilter } from "./shared/define-config-DSMNXceb.mjs";
1
+ import { F as withFilter } from "./shared/define-config-Dsp5YQR4.mjs";
2
2
  //#region ../../node_modules/.pnpm/@rolldown+pluginutils@1.0.1/node_modules/@rolldown/pluginutils/dist/filter/index.d.mts
3
3
  //#region src/filter/composable-filters.d.ts
4
4
  type StringOrRegExp = string | RegExp;
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
1
  import { a as RolldownLog, i as RolldownError, n as LogLevelOption, o as RolldownLogWithString, r as LogOrStringHandler, t as LogLevel } from "./shared/logging-xuHO4mAy.mjs";
2
2
  import { B as PreRenderedChunk } from "./shared/binding-CVtkJvyl.mjs";
3
- import { $t as ModuleInfo, A as ResolvedId, At as ChunkFileNamesFunction, B as ExistingRawSourceMap, Bt as ModuleFormat, C as ParallelPluginHooks, Ct as RolldownBuild, D as ResolveFileUrlArgs, Dt as AdvancedChunksGroup, E as PluginMeta, Et as AddonFunction, Ft as CommentsOptions, G as EmittedAsset, H as OutputBundle, Ht as PreRenderedAsset, It as GeneratedCodeOptions, J as EmittedPrebuiltChunk, Jt as RenderedChunk, K as EmittedChunk, Kt as OutputAsset, L as RUNTIME_MODULE_ID, Lt as GeneratedCodePreset, M as RolldownPluginOption, Mt as CodeSplittingGroup, N as SourceDescription, Nt as CodeSplittingNameFunction, O as ResolveIdExtraOptions, Ot as AdvancedChunksOptions, P as TransformResult, Pt as CodeSplittingOptions, Q as DefineParallelPluginResult, R as VERSION, Rt as GlobalsFunction, S as ObjectHook, St as rolldown, T as Plugin, Tt as build, U as TreeshakingOptions, V as SourceMapInput, Vt as OutputOptions, W as TransformPluginContext, Wt as PartialNull, X as PluginContext, Xt as RolldownOutput, Y as GetModuleInfo, Yt as RenderedModule, Z as PluginContextResolveOptions, Zt as SourceMap, _ as HookFilterExtension, _t as watch, a as ChunkOptimizationOptions, at as BufferEncoding, b as ModuleOptions, bt as RolldownWatcherWatcherEventMap, c as InputOption, ct as RolldownFsModule, d as OptimizationOptions, dt as NormalizedInputOptions, en as SourcemapIgnoreListOption, et as MinimalPluginContext, f as WatcherFileWatcherOptions, ft as TransformOptions, g as FunctionPluginHooks, gt as RolldownMagicString, h as CustomPluginOptions, ht as WarningHandlerWithDefault, i as RolldownOptions, it as ModuleTypeFilter, j as RolldownPlugin, jt as ChunkingContext, k as ResolveIdResult, kt as BuiltinModuleTag, l as InputOptions, lt as InternalModuleFormat, m as AsyncPluginHooks, mt as LoggingFunction, n as RolldownOptionsFunction, nt as GeneralHookFilter, o as ExternalOption, ot as RolldownDirectoryEntry, p as WatcherOptions, pt as ChecksOptions, q as EmittedFile, qt as OutputChunk, r as defineConfig, rt as HookFilter, s as ExternalOptionFunction, st as RolldownFileStats, t as ConfigExport, tt as PluginContextMeta, u as ModuleTypes, ut as NormalizedOutputOptions, v as ImportKind, vt as RolldownWatcher, w as PartialResolvedId, wt as BuildOptions, x as ModuleType, xt as WatchOptions, y as LoadResult, yt as RolldownWatcherEvent, z as BundleError, zt as MinifyOptions } from "./shared/define-config-DSMNXceb.mjs";
3
+ import { $t as ModuleInfo, A as ResolvedId, At as ChunkFileNamesFunction, B as ExistingRawSourceMap, Bt as ModuleFormat, C as ParallelPluginHooks, Ct as RolldownBuild, D as ResolveFileUrlArgs, Dt as AdvancedChunksGroup, E as PluginMeta, Et as AddonFunction, Ft as CommentsOptions, G as EmittedAsset, H as OutputBundle, Ht as PreRenderedAsset, It as GeneratedCodeOptions, J as EmittedPrebuiltChunk, Jt as RenderedChunk, K as EmittedChunk, Kt as OutputAsset, L as RUNTIME_MODULE_ID, Lt as GeneratedCodePreset, M as RolldownPluginOption, Mt as CodeSplittingGroup, N as SourceDescription, Nt as CodeSplittingNameFunction, O as ResolveIdExtraOptions, Ot as AdvancedChunksOptions, P as TransformResult, Pt as CodeSplittingOptions, Q as DefineParallelPluginResult, R as VERSION, Rt as GlobalsFunction, S as ObjectHook, St as rolldown, T as Plugin, Tt as build, U as TreeshakingOptions, V as SourceMapInput, Vt as OutputOptions, W as TransformPluginContext, Wt as PartialNull, X as PluginContext, Xt as RolldownOutput, Y as GetModuleInfo, Yt as RenderedModule, Z as PluginContextResolveOptions, Zt as SourceMap, _ as HookFilterExtension, _t as watch, a as ChunkOptimizationOptions, at as BufferEncoding, b as ModuleOptions, bt as RolldownWatcherWatcherEventMap, c as InputOption, ct as RolldownFsModule, d as OptimizationOptions, dt as NormalizedInputOptions, en as SourcemapIgnoreListOption, et as MinimalPluginContext, f as WatcherFileWatcherOptions, ft as TransformOptions, g as FunctionPluginHooks, gt as RolldownMagicString, h as CustomPluginOptions, ht as WarningHandlerWithDefault, i as RolldownOptions, it as ModuleTypeFilter, j as RolldownPlugin, jt as ChunkingContext, k as ResolveIdResult, kt as BuiltinModuleTag, l as InputOptions, lt as InternalModuleFormat, m as AsyncPluginHooks, mt as LoggingFunction, n as RolldownOptionsFunction, nt as GeneralHookFilter, o as ExternalOption, ot as RolldownDirectoryEntry, p as WatcherOptions, pt as ChecksOptions, q as EmittedFile, qt as OutputChunk, r as defineConfig, rt as HookFilter, s as ExternalOptionFunction, st as RolldownFileStats, t as ConfigExport, tt as PluginContextMeta, u as ModuleTypes, ut as NormalizedOutputOptions, v as ImportKind, vt as RolldownWatcher, w as PartialResolvedId, wt as BuildOptions, x as ModuleType, xt as WatchOptions, y as LoadResult, yt as RolldownWatcherEvent, z as BundleError, zt as MinifyOptions } from "./shared/define-config-Dsp5YQR4.mjs";
4
4
  export { type AddonFunction, type AdvancedChunksGroup, type AdvancedChunksOptions, type AsyncPluginHooks, type BufferEncoding, type BuildOptions, type BuiltinModuleTag, type BundleError, type ChecksOptions, type ChunkFileNamesFunction, type ChunkOptimizationOptions, type ChunkingContext, type CodeSplittingGroup, type CodeSplittingNameFunction, type CodeSplittingOptions, type CommentsOptions, type ConfigExport, type CustomPluginOptions, type DefineParallelPluginResult, type EmittedAsset, type EmittedChunk, type EmittedFile, type EmittedPrebuiltChunk, type ExistingRawSourceMap, type ExternalOption, type ExternalOptionFunction, type FunctionPluginHooks, type GeneralHookFilter, type GeneratedCodeOptions, type GeneratedCodePreset, 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, 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 PluginContextResolveOptions, type PluginMeta, type PreRenderedAsset, type PreRenderedChunk, RUNTIME_MODULE_ID, type RenderedChunk, type RenderedModule, type ResolveFileUrlArgs, type ResolveIdExtraOptions, type ResolveIdResult, type ResolvedId, type RolldownBuild, type RolldownDirectoryEntry, type RolldownError, type RolldownError as RollupError, type RolldownFileStats, type RolldownFsModule, type RolldownLog, type RolldownLog as RollupLog, type RolldownLogWithString, type RolldownLogWithString as RollupLogWithString, RolldownMagicString, type RolldownOptions, type RolldownOptionsFunction, type RolldownOutput, type RolldownPlugin, type RolldownPluginOption, type RolldownWatcher, type RolldownWatcherEvent, type RolldownWatcherWatcherEventMap, type SourceDescription, type SourceMap, type SourceMapInput, type SourcemapIgnoreListOption, type TransformOptions, type TransformPluginContext, type TransformResult, type TreeshakingOptions, VERSION, type WarningHandlerWithDefault, type WatchOptions, type WatcherFileWatcherOptions, type WatcherOptions, build, defineConfig, rolldown, watch };
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
- import { n as __toESM, t as require_binding } from "./shared/binding-DwUQWZOo.mjs";
2
- import { n as onExit, t as watch } from "./shared/watch-DcgK_L55.mjs";
3
- import { T as VERSION, s as RolldownMagicString } from "./shared/bindingify-input-options-BHixd47T.mjs";
4
- import { t as rolldown } from "./shared/rolldown-D23fYgSS.mjs";
1
+ import { n as __toESM, t as require_binding } from "./shared/binding-Zhafd14U.mjs";
2
+ import { n as onExit, t as watch } from "./shared/watch-BNCfUBmW.mjs";
3
+ import { T as VERSION, s as RolldownMagicString } from "./shared/bindingify-input-options-C-Zsy1EG.mjs";
4
+ import { t as rolldown } from "./shared/rolldown-DiYVDns9.mjs";
5
5
  import { t as defineConfig } from "./shared/define-config-Demdg3_4.mjs";
6
6
  import { isMainThread } from "node:worker_threads";
7
7
  //#region src/setup.ts
@@ -1,5 +1,5 @@
1
- import { n as __toESM, t as require_binding } from "./shared/binding-DwUQWZOo.mjs";
2
- import { c as PluginContextData, n as bindingifyPlugin } from "./shared/bindingify-input-options-BHixd47T.mjs";
1
+ import { n as __toESM, t as require_binding } from "./shared/binding-Zhafd14U.mjs";
2
+ import { c as PluginContextData, n as bindingifyPlugin } from "./shared/bindingify-input-options-C-Zsy1EG.mjs";
3
3
  import { parentPort, workerData } from "node:worker_threads";
4
4
  //#region src/parallel-plugin-worker.ts
5
5
  var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
@@ -1,4 +1,4 @@
1
- import { T as Plugin, Ut as MaybePromise } from "./shared/define-config-DSMNXceb.mjs";
1
+ import { T as Plugin, Ut as MaybePromise } from "./shared/define-config-Dsp5YQR4.mjs";
2
2
  //#region src/plugin/parallel-plugin-implementation.d.ts
3
3
  type ParallelPluginImplementation = Plugin;
4
4
  type Context = {
@@ -1,5 +1,5 @@
1
1
  import { c as logParseError, d as getCodeFrame, n as error, t as augmentCodeLocation, u as locate } from "./shared/logs-DmYCAKcW.mjs";
2
- import { n as parseSync, t as parse } from "./shared/parse-C17W7W5g.mjs";
2
+ import { n as parseSync, t as parse } from "./shared/parse-DnWvq9XZ.mjs";
3
3
  //#region src/parse-ast-index.ts
4
4
  function wrap(result, filename, sourceText) {
5
5
  if (result.errors.length > 0) return normalizeParseError(filename, sourceText, result.errors);
@@ -1,6 +1,6 @@
1
1
  import { h as BindingReplacePluginConfig } from "./shared/binding-CVtkJvyl.mjs";
2
- import { I as BuiltinPlugin } from "./shared/define-config-DSMNXceb.mjs";
3
- import { t as esmExternalRequirePlugin } from "./shared/constructors-ALilxAii.mjs";
2
+ import { I as BuiltinPlugin } from "./shared/define-config-Dsp5YQR4.mjs";
3
+ import { t as esmExternalRequirePlugin } from "./shared/constructors-CGzna3vk.mjs";
4
4
  //#region src/builtin-plugin/replace-plugin.d.ts
5
5
  /**
6
6
  * Replaces targeted strings in files while bundling.
@@ -1,5 +1,5 @@
1
- import { a as makeBuiltinPluginCallable, n as BuiltinPlugin } from "./shared/normalize-string-or-regex-Cj-DgIV1.mjs";
2
- import { t as esmExternalRequirePlugin } from "./shared/constructors-COwFYQna.mjs";
1
+ import { a as makeBuiltinPluginCallable, n as BuiltinPlugin } from "./shared/normalize-string-or-regex-BxRYnPRv.mjs";
2
+ import { t as esmExternalRequirePlugin } from "./shared/constructors-u6EEiG8n.mjs";
3
3
  //#region src/builtin-plugin/replace-plugin.ts
4
4
  /**
5
5
  * Replaces targeted strings in files while bundling.