rolldown 1.0.0-beta.8-commit.a98d94e → 1.0.0-beta.8-commit.852c603
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 +4 -3
- package/dist/cli.mjs +4 -3
- package/dist/experimental-index.cjs +3 -2
- package/dist/experimental-index.d.cts +1 -1
- package/dist/experimental-index.d.mts +2 -2
- package/dist/experimental-index.mjs +3 -2
- package/dist/filter-expression-index.cjs +11 -0
- package/dist/filter-expression-index.d.cts +4 -0
- package/dist/filter-expression-index.d.mts +4 -0
- package/dist/filter-expression-index.mjs +4 -0
- package/dist/index.cjs +3 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +3 -2
- package/dist/parallel-plugin-worker.cjs +3 -2
- package/dist/parallel-plugin-worker.mjs +3 -2
- package/dist/parallel-plugin.d.cts +1 -1
- package/dist/parallel-plugin.d.mts +2 -2
- package/dist/parse-ast-index.cjs +1 -1
- package/dist/parse-ast-index.d.mts +1 -1
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/shared/filter-expression-index-BKmgnKlV.mjs +69 -0
- package/dist/shared/filter-expression-index-CRtoeipP.cjs +119 -0
- package/dist/shared/{input-options.d-DW_DouH4.d.cts → input-options.d-BHwth6VM.d.cts} +83 -21
- package/dist/shared/{input-options.d-BS41m-u8.d.mts → input-options.d-CN-JV5dt.d.mts} +84 -22
- package/dist/shared/{parse-ast-index-BU0vRbCC.cjs → parse-ast-index-Bbz37LOL.cjs} +1 -0
- package/dist/shared/{parse-ast-index-C5zEG9SJ.mjs → parse-ast-index-D0SmlXT6.mjs} +1 -0
- package/dist/shared/{src-Bv1wl15e.cjs → src-B4f_CmD8.cjs} +248 -133
- package/dist/shared/{src-IKFm0rpN.mjs → src-CaxK4-gB.mjs} +1781 -1665
- package/package.json +19 -15
- /package/dist/shared/{binding.d-N_CFNfq2.d.mts → binding.d-BaNmLM9c.d.mts} +0 -0
- /package/dist/shared/{prompt-_yrURmmm.cjs → prompt-At99RuKY.cjs} +0 -0
- /package/dist/shared/{prompt-V-Wm9PcC.mjs → prompt-UMUDMApt.mjs} +0 -0
package/dist/cli.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const require_chunk = require('./shared/chunk-qZFfknuJ.cjs');
|
|
2
|
-
const require_src = require('./shared/src-
|
|
3
|
-
require('./shared/parse-ast-index-
|
|
2
|
+
const require_src = require('./shared/src-B4f_CmD8.cjs');
|
|
3
|
+
require('./shared/parse-ast-index-Bbz37LOL.cjs');
|
|
4
|
+
require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
4
5
|
const node_fs = require_chunk.__toESM(require("node:fs"));
|
|
5
6
|
const node_path = require_chunk.__toESM(require("node:path"));
|
|
6
7
|
const ansis = require_chunk.__toESM(require("ansis"));
|
|
@@ -970,7 +971,7 @@ function createConsola(options$1 = {}) {
|
|
|
970
971
|
// Terminus (<0.2.27)
|
|
971
972
|
// ConEmu and cmder
|
|
972
973
|
function() {
|
|
973
|
-
return require("./shared/prompt-
|
|
974
|
+
return require("./shared/prompt-At99RuKY.cjs");
|
|
974
975
|
}
|
|
975
976
|
).then((m) => m.prompt(...args)),
|
|
976
977
|
reporters: options$1.reporters || [options$1.fancy ?? !(T || R) ? new FancyReporter() : new BasicReporter()],
|
package/dist/cli.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { __commonJS, __esm, __toESM } from "./shared/chunk-DUYDk_2O.mjs";
|
|
2
|
-
import { arraify, description, getInputCliKeys, getJsonSchema, getOutputCliKeys, init_misc, init_rolldown, init_validator, init_watch, rolldown, validateCliOptions, version, watch } from "./shared/src-
|
|
3
|
-
import "./shared/parse-ast-index-
|
|
2
|
+
import { arraify, description, getInputCliKeys, getJsonSchema, getOutputCliKeys, init_misc, init_rolldown, init_validator, init_watch, rolldown, validateCliOptions, version, watch } from "./shared/src-CaxK4-gB.mjs";
|
|
3
|
+
import "./shared/parse-ast-index-D0SmlXT6.mjs";
|
|
4
|
+
import "./shared/filter-expression-index-BKmgnKlV.mjs";
|
|
4
5
|
import fs from "node:fs";
|
|
5
6
|
import path, { sep } from "node:path";
|
|
6
7
|
import colors from "ansis";
|
|
@@ -760,7 +761,7 @@ function createConsola(options$1 = {}) {
|
|
|
760
761
|
defaults: { level },
|
|
761
762
|
stdout: process.stdout,
|
|
762
763
|
stderr: process.stderr,
|
|
763
|
-
prompt: (...args) => import("./shared/prompt-
|
|
764
|
+
prompt: (...args) => import("./shared/prompt-UMUDMApt.mjs").then((m) => m.prompt(...args)),
|
|
764
765
|
reporters: options$1.reporters || [options$1.fancy ?? !(T || R) ? new FancyReporter() : new BasicReporter()],
|
|
765
766
|
...options$1
|
|
766
767
|
});
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const require_chunk = require('./shared/chunk-qZFfknuJ.cjs');
|
|
3
|
-
const require_src = require('./shared/src-
|
|
4
|
-
const require_parse_ast_index = require('./shared/parse-ast-index-
|
|
3
|
+
const require_src = require('./shared/src-B4f_CmD8.cjs');
|
|
4
|
+
const require_parse_ast_index = require('./shared/parse-ast-index-Bbz37LOL.cjs');
|
|
5
|
+
require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
5
6
|
const node_url = require_chunk.__toESM(require("node:url"));
|
|
6
7
|
|
|
7
8
|
//#region src/api/experimental.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BindingReplacePluginConfig, BindingTransformPluginConfig, TransformOptions, TransformResult$1 as TransformResult, moduleRunnerTransform, transform } from "./shared/binding.d-y7dWnUxd.cjs";
|
|
2
|
-
import { BuiltinPlugin, InputOptions, RolldownPlugin, buildImportAnalysisPlugin, defineParallelPlugin, dynamicImportVarsPlugin, importGlobPlugin, isolatedDeclarationPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, moduleFederationPlugin, modulePreloadPolyfillPlugin, reportPlugin, viteResolvePlugin, wasmFallbackPlugin, wasmHelperPlugin } from "./shared/input-options.d-
|
|
2
|
+
import { BuiltinPlugin, InputOptions, RolldownPlugin, buildImportAnalysisPlugin, defineParallelPlugin, dynamicImportVarsPlugin, importGlobPlugin, isolatedDeclarationPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, moduleFederationPlugin, modulePreloadPolyfillPlugin, reportPlugin, viteResolvePlugin, wasmFallbackPlugin, wasmHelperPlugin } from "./shared/input-options.d-BHwth6VM.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/api/experimental.d.ts
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BindingReplacePluginConfig, BindingTransformPluginConfig, TransformOptions, TransformResult$1 as TransformResult, moduleRunnerTransform, transform } from "./shared/binding.d-
|
|
2
|
-
import { BuiltinPlugin$1 as BuiltinPlugin, InputOptions, RolldownPlugin, buildImportAnalysisPlugin$1 as buildImportAnalysisPlugin, defineParallelPlugin, dynamicImportVarsPlugin$1 as dynamicImportVarsPlugin, importGlobPlugin$1 as importGlobPlugin, isolatedDeclarationPlugin$1 as isolatedDeclarationPlugin, jsonPlugin$1 as jsonPlugin, loadFallbackPlugin$1 as loadFallbackPlugin, manifestPlugin$1 as manifestPlugin, moduleFederationPlugin$1 as moduleFederationPlugin, modulePreloadPolyfillPlugin$1 as modulePreloadPolyfillPlugin, reportPlugin$1 as reportPlugin, viteResolvePlugin$1 as viteResolvePlugin, wasmFallbackPlugin$1 as wasmFallbackPlugin, wasmHelperPlugin$1 as wasmHelperPlugin } from "./shared/input-options.d-
|
|
1
|
+
import { BindingReplacePluginConfig, BindingTransformPluginConfig, TransformOptions, TransformResult$1 as TransformResult, moduleRunnerTransform, transform } from "./shared/binding.d-BaNmLM9c.mjs";
|
|
2
|
+
import { BuiltinPlugin$1 as BuiltinPlugin, InputOptions, RolldownPlugin, buildImportAnalysisPlugin$1 as buildImportAnalysisPlugin, defineParallelPlugin, dynamicImportVarsPlugin$1 as dynamicImportVarsPlugin, importGlobPlugin$1 as importGlobPlugin, isolatedDeclarationPlugin$1 as isolatedDeclarationPlugin, jsonPlugin$1 as jsonPlugin, loadFallbackPlugin$1 as loadFallbackPlugin, manifestPlugin$1 as manifestPlugin, moduleFederationPlugin$1 as moduleFederationPlugin, modulePreloadPolyfillPlugin$1 as modulePreloadPolyfillPlugin, reportPlugin$1 as reportPlugin, viteResolvePlugin$1 as viteResolvePlugin, wasmFallbackPlugin$1 as wasmFallbackPlugin, wasmHelperPlugin$1 as wasmHelperPlugin } from "./shared/input-options.d-CN-JV5dt.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/api/experimental.d.ts
|
|
5
5
|
/**
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { BuiltinPlugin, buildImportAnalysisPlugin, composeJsPlugins, createBundler, dynamicImportVarsPlugin, handleOutputErrors, importGlobPlugin, init_compose_js_plugins, init_constructors, init_create_bundler, init_normalize_string_or_regex, init_transform_to_rollup_output, isolatedDeclarationPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, moduleFederationPlugin, modulePreloadPolyfillPlugin, normalizedStringOrRegex, reportPlugin, viteResolvePlugin, wasmFallbackPlugin, wasmHelperPlugin } from "./shared/src-
|
|
2
|
-
import { import_binding } from "./shared/parse-ast-index-
|
|
1
|
+
import { BuiltinPlugin, buildImportAnalysisPlugin, composeJsPlugins, createBundler, dynamicImportVarsPlugin, handleOutputErrors, importGlobPlugin, init_compose_js_plugins, init_constructors, init_create_bundler, init_normalize_string_or_regex, init_transform_to_rollup_output, isolatedDeclarationPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, moduleFederationPlugin, modulePreloadPolyfillPlugin, normalizedStringOrRegex, reportPlugin, viteResolvePlugin, wasmFallbackPlugin, wasmHelperPlugin } from "./shared/src-CaxK4-gB.mjs";
|
|
2
|
+
import { import_binding } from "./shared/parse-ast-index-D0SmlXT6.mjs";
|
|
3
|
+
import "./shared/filter-expression-index-BKmgnKlV.mjs";
|
|
3
4
|
import { pathToFileURL } from "node:url";
|
|
4
5
|
|
|
5
6
|
//#region src/api/experimental.ts
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const require_filter_expression_index = require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
2
|
+
|
|
3
|
+
exports.And = require_filter_expression_index.And
|
|
4
|
+
exports.and = require_filter_expression_index.and
|
|
5
|
+
exports.code = require_filter_expression_index.code
|
|
6
|
+
exports.exclude = require_filter_expression_index.exclude
|
|
7
|
+
exports.id = require_filter_expression_index.id
|
|
8
|
+
exports.include = require_filter_expression_index.include
|
|
9
|
+
exports.moduleType = require_filter_expression_index.moduleType
|
|
10
|
+
exports.not = require_filter_expression_index.not
|
|
11
|
+
exports.or = require_filter_expression_index.or
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import "./shared/binding.d-y7dWnUxd.cjs";
|
|
2
|
+
import { And, FilterExpression, FilterExpressionKind, TopLevelFilterExpression, and, code, exclude, id, include, moduleType, not, or } from "./shared/input-options.d-BHwth6VM.cjs";
|
|
3
|
+
|
|
4
|
+
export { And, FilterExpression, FilterExpressionKind, TopLevelFilterExpression, and, code, exclude, id, include, moduleType, not, or };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import "./shared/binding.d-BaNmLM9c.mjs";
|
|
2
|
+
import { And$1 as And, FilterExpression, FilterExpressionKind, TopLevelFilterExpression, and$1 as and, code$1 as code, exclude$1 as exclude, id$1 as id, include$1 as include, moduleType$1 as moduleType, not$1 as not, or$1 as or } from "./shared/input-options.d-CN-JV5dt.mjs";
|
|
3
|
+
|
|
4
|
+
export { And, FilterExpression, FilterExpressionKind, TopLevelFilterExpression, and, code, exclude, id, include, moduleType, not, or };
|
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
const require_src = require('./shared/src-
|
|
2
|
-
require('./shared/parse-ast-index-
|
|
1
|
+
const require_src = require('./shared/src-B4f_CmD8.cjs');
|
|
2
|
+
require('./shared/parse-ast-index-Bbz37LOL.cjs');
|
|
3
|
+
require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
3
4
|
|
|
4
5
|
exports.VERSION = require_src.VERSION
|
|
5
6
|
exports.build = require_src.build
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { PreRenderedChunk } from "./shared/binding.d-y7dWnUxd.cjs";
|
|
2
|
-
import { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption,
|
|
2
|
+
import { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GeneralHookFilter, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption, TransformPluginContext, TransformResult, TreeshakingOptions, VERSION, WarningHandlerWithDefault, WatchOptions, build, defineConfig, rolldown, watch, withFilter } from "./shared/input-options.d-BHwth6VM.cjs";
|
|
3
3
|
|
|
4
|
-
export { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, PreRenderedChunk, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption,
|
|
4
|
+
export { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GeneralHookFilter, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, PreRenderedChunk, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption, TransformPluginContext, TransformResult, TreeshakingOptions, VERSION, WarningHandlerWithDefault, WatchOptions, build, defineConfig, rolldown, watch, withFilter };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PreRenderedChunk } from "./shared/binding.d-
|
|
2
|
-
import { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption,
|
|
1
|
+
import { PreRenderedChunk } from "./shared/binding.d-BaNmLM9c.mjs";
|
|
2
|
+
import { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GeneralHookFilter, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption, TransformPluginContext, TransformResult, TreeshakingOptions, VERSION$1 as VERSION, WarningHandlerWithDefault, WatchOptions, build$1 as build, defineConfig$1 as defineConfig, rolldown$1 as rolldown, watch$1 as watch, withFilter$1 as withFilter } from "./shared/input-options.d-CN-JV5dt.mjs";
|
|
3
3
|
|
|
4
|
-
export { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, PreRenderedChunk, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption,
|
|
4
|
+
export { AddonFunction, AsyncPluginHooks, BuildOptions, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GeneralHookFilter, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, PreRenderedChunk, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption, TransformPluginContext, TransformResult, TreeshakingOptions, VERSION, WarningHandlerWithDefault, WatchOptions, build, defineConfig, rolldown, watch, withFilter };
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { VERSION, build, defineConfig, init_src, rolldown, watch, withFilter } from "./shared/src-
|
|
2
|
-
import "./shared/parse-ast-index-
|
|
1
|
+
import { VERSION, build, defineConfig, init_src, rolldown, watch, withFilter } from "./shared/src-CaxK4-gB.mjs";
|
|
2
|
+
import "./shared/parse-ast-index-D0SmlXT6.mjs";
|
|
3
|
+
import "./shared/filter-expression-index-BKmgnKlV.mjs";
|
|
3
4
|
|
|
4
5
|
init_src();
|
|
5
6
|
export { VERSION, build, defineConfig, rolldown, watch, withFilter };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const require_chunk = require('./shared/chunk-qZFfknuJ.cjs');
|
|
2
|
-
const require_src = require('./shared/src-
|
|
3
|
-
const require_parse_ast_index = require('./shared/parse-ast-index-
|
|
2
|
+
const require_src = require('./shared/src-B4f_CmD8.cjs');
|
|
3
|
+
const require_parse_ast_index = require('./shared/parse-ast-index-Bbz37LOL.cjs');
|
|
4
|
+
require('./shared/filter-expression-index-CRtoeipP.cjs');
|
|
4
5
|
const node_worker_threads = require_chunk.__toESM(require("node:worker_threads"));
|
|
5
6
|
|
|
6
7
|
//#region src/parallel-plugin-worker.ts
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { __commonJS } from "./shared/chunk-DUYDk_2O.mjs";
|
|
2
|
-
import { PluginContextData, bindingifyPlugin, init_bindingify_plugin, init_plugin_context_data } from "./shared/src-
|
|
3
|
-
import { import_binding } from "./shared/parse-ast-index-
|
|
2
|
+
import { PluginContextData, bindingifyPlugin, init_bindingify_plugin, init_plugin_context_data } from "./shared/src-CaxK4-gB.mjs";
|
|
3
|
+
import { import_binding } from "./shared/parse-ast-index-D0SmlXT6.mjs";
|
|
4
|
+
import "./shared/filter-expression-index-BKmgnKlV.mjs";
|
|
4
5
|
import { parentPort, workerData } from "node:worker_threads";
|
|
5
6
|
|
|
6
7
|
//#region src/parallel-plugin-worker.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "./shared/binding.d-y7dWnUxd.cjs";
|
|
2
|
-
import { MaybePromise, Plugin } from "./shared/input-options.d-
|
|
2
|
+
import { MaybePromise, Plugin } from "./shared/input-options.d-BHwth6VM.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/plugin/parallel-plugin-implementation.d.ts
|
|
5
5
|
type ParallelPluginImplementation = Plugin;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "./shared/binding.d-
|
|
2
|
-
import { MaybePromise, Plugin } from "./shared/input-options.d-
|
|
1
|
+
import "./shared/binding.d-BaNmLM9c.mjs";
|
|
2
|
+
import { MaybePromise, Plugin } from "./shared/input-options.d-CN-JV5dt.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/plugin/parallel-plugin-implementation.d.ts
|
|
5
5
|
type ParallelPluginImplementation = Plugin;
|
package/dist/parse-ast-index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_parse_ast_index = require('./shared/parse-ast-index-
|
|
1
|
+
const require_parse_ast_index = require('./shared/parse-ast-index-Bbz37LOL.cjs');
|
|
2
2
|
|
|
3
3
|
exports.parseAst = require_parse_ast_index.parseAst
|
|
4
4
|
exports.parseAstAsync = require_parse_ast_index.parseAstAsync
|
package/dist/parse-ast-index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { init_parse_ast_index, parseAst, parseAstAsync } from "./shared/parse-ast-index-
|
|
1
|
+
import { init_parse_ast_index, parseAst, parseAstAsync } from "./shared/parse-ast-index-D0SmlXT6.mjs";
|
|
2
2
|
|
|
3
3
|
init_parse_ast_index();
|
|
4
4
|
export { parseAst, parseAstAsync };
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { __esm } from "./chunk-DUYDk_2O.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/filter-expression-index.ts
|
|
4
|
+
function and(left, right) {
|
|
5
|
+
return {
|
|
6
|
+
kind: "and",
|
|
7
|
+
left,
|
|
8
|
+
right
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
function or(left, right) {
|
|
12
|
+
return {
|
|
13
|
+
kind: "or",
|
|
14
|
+
left,
|
|
15
|
+
right
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
function not(expr) {
|
|
19
|
+
return {
|
|
20
|
+
kind: "not",
|
|
21
|
+
expr
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
function id(pattern) {
|
|
25
|
+
return {
|
|
26
|
+
kind: "id",
|
|
27
|
+
pattern
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function moduleType(pattern) {
|
|
31
|
+
return {
|
|
32
|
+
kind: "moduleType",
|
|
33
|
+
pattern
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
function code(pattern) {
|
|
37
|
+
return {
|
|
38
|
+
kind: "code",
|
|
39
|
+
pattern
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function include(expr) {
|
|
43
|
+
return {
|
|
44
|
+
kind: "include",
|
|
45
|
+
expr
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
function exclude(expr) {
|
|
49
|
+
return {
|
|
50
|
+
kind: "exclude",
|
|
51
|
+
expr
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
var And;
|
|
55
|
+
var init_filter_expression_index = __esm({ "src/filter-expression-index.ts"() {
|
|
56
|
+
And = class {
|
|
57
|
+
kind;
|
|
58
|
+
left;
|
|
59
|
+
right;
|
|
60
|
+
constructor(left, right) {
|
|
61
|
+
this.left = left;
|
|
62
|
+
this.right = right;
|
|
63
|
+
this.kind = "and";
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
} });
|
|
67
|
+
|
|
68
|
+
//#endregion
|
|
69
|
+
export { And, and, code, exclude, id, include, init_filter_expression_index, moduleType, not, or };
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
//#region src/filter-expression-index.ts
|
|
4
|
+
var And = class {
|
|
5
|
+
kind;
|
|
6
|
+
left;
|
|
7
|
+
right;
|
|
8
|
+
constructor(left, right) {
|
|
9
|
+
this.left = left;
|
|
10
|
+
this.right = right;
|
|
11
|
+
this.kind = "and";
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
function and(left, right) {
|
|
15
|
+
return {
|
|
16
|
+
kind: "and",
|
|
17
|
+
left,
|
|
18
|
+
right
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function or(left, right) {
|
|
22
|
+
return {
|
|
23
|
+
kind: "or",
|
|
24
|
+
left,
|
|
25
|
+
right
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
function not(expr) {
|
|
29
|
+
return {
|
|
30
|
+
kind: "not",
|
|
31
|
+
expr
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
function id(pattern) {
|
|
35
|
+
return {
|
|
36
|
+
kind: "id",
|
|
37
|
+
pattern
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function moduleType(pattern) {
|
|
41
|
+
return {
|
|
42
|
+
kind: "moduleType",
|
|
43
|
+
pattern
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function code(pattern) {
|
|
47
|
+
return {
|
|
48
|
+
kind: "code",
|
|
49
|
+
pattern
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function include(expr) {
|
|
53
|
+
return {
|
|
54
|
+
kind: "include",
|
|
55
|
+
expr
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
function exclude(expr) {
|
|
59
|
+
return {
|
|
60
|
+
kind: "exclude",
|
|
61
|
+
expr
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
//#endregion
|
|
66
|
+
Object.defineProperty(exports, 'And', {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function () {
|
|
69
|
+
return And;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, 'and', {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function () {
|
|
75
|
+
return and;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(exports, 'code', {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function () {
|
|
81
|
+
return code;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
Object.defineProperty(exports, 'exclude', {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: function () {
|
|
87
|
+
return exclude;
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
Object.defineProperty(exports, 'id', {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function () {
|
|
93
|
+
return id;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
Object.defineProperty(exports, 'include', {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () {
|
|
99
|
+
return include;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, 'moduleType', {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function () {
|
|
105
|
+
return moduleType;
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(exports, 'not', {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function () {
|
|
111
|
+
return not;
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, 'or', {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () {
|
|
117
|
+
return or;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
@@ -5,12 +5,6 @@ import { Program } from "@oxc-project/types";
|
|
|
5
5
|
type LogLevel = "info" | "debug" | "warn";
|
|
6
6
|
type LogLevelOption = LogLevel | "silent";
|
|
7
7
|
type LogLevelWithError = LogLevel | "error";
|
|
8
|
-
type RollupLog$1 = any;
|
|
9
|
-
type RollupLogWithString = RollupLog$1 | string;
|
|
10
|
-
type LogOrStringHandler = (level: LogLevelWithError, log: RollupLogWithString) => void;
|
|
11
|
-
|
|
12
|
-
//#endregion
|
|
13
|
-
//#region src/types/misc.d.ts
|
|
14
8
|
interface RollupLog {
|
|
15
9
|
binding?: string;
|
|
16
10
|
cause?: unknown;
|
|
@@ -35,19 +29,18 @@ interface RollupLog {
|
|
|
35
29
|
stack?: string;
|
|
36
30
|
url?: string;
|
|
37
31
|
}
|
|
32
|
+
type RollupLogWithString = RollupLog | string;
|
|
38
33
|
interface RollupError extends RollupLog {
|
|
39
34
|
name?: string;
|
|
40
35
|
stack?: string;
|
|
41
36
|
watchFiles?: string[];
|
|
42
37
|
}
|
|
43
|
-
type
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}) => void;
|
|
38
|
+
type LogOrStringHandler = (level: LogLevelWithError, log: RollupLogWithString) => void;
|
|
39
|
+
|
|
40
|
+
//#endregion
|
|
41
|
+
//#region src/types/misc.d.ts
|
|
48
42
|
type SourcemapPathTransformOption = (relativeSourcePath: string, sourcemapPath: string) => string;
|
|
49
43
|
type SourcemapIgnoreListOption = (relativeSourcePath: string, sourcemapPath: string) => boolean;
|
|
50
|
-
type WarningHandlerWithDefault = (warning: RollupLog, defaultHandler: LoggingFunction) => void;
|
|
51
44
|
|
|
52
45
|
//#endregion
|
|
53
46
|
//#region src/utils/asset-source.d.ts
|
|
@@ -372,6 +365,15 @@ type RolldownWatcher = WatcherEmitter;
|
|
|
372
365
|
//#region src/api/watch/index.d.ts
|
|
373
366
|
declare const watch: (input: WatchOptions$1 | WatchOptions$1[]) => RolldownWatcher;
|
|
374
367
|
|
|
368
|
+
//#endregion
|
|
369
|
+
//#region src/log/log-handler.d.ts
|
|
370
|
+
type LoggingFunction = (log: RollupLog | string | (() => RollupLog | string)) => void;
|
|
371
|
+
type LoggingFunctionWithPosition = (log: RollupLog | string | (() => RollupLog | string), pos?: number | {
|
|
372
|
+
column: number
|
|
373
|
+
line: number
|
|
374
|
+
}) => void;
|
|
375
|
+
type WarningHandlerWithDefault = (warning: RollupLog, defaultHandler: LoggingFunction) => void;
|
|
376
|
+
|
|
375
377
|
//#endregion
|
|
376
378
|
//#region src/options/normalized-input-options.d.ts
|
|
377
379
|
interface NormalizedInputOptions {
|
|
@@ -415,11 +417,68 @@ interface NormalizedOutputOptions {
|
|
|
415
417
|
plugins: RolldownPlugin[];
|
|
416
418
|
}
|
|
417
419
|
|
|
420
|
+
//#endregion
|
|
421
|
+
//#region src/filter-expression-index.d.ts
|
|
422
|
+
type FilterExpressionKind = FilterExpression["kind"];
|
|
423
|
+
type FilterExpression = And | Or | Not | Id | ModuleType$1 | Code | Include | Exclude$1;
|
|
424
|
+
type TopLevelFilterExpression = Include | Exclude$1;
|
|
425
|
+
declare class And {
|
|
426
|
+
kind: "and";
|
|
427
|
+
left: FilterExpression;
|
|
428
|
+
right: FilterExpression;
|
|
429
|
+
constructor(left: FilterExpression, right: FilterExpression);
|
|
430
|
+
}
|
|
431
|
+
declare class Or {
|
|
432
|
+
kind: "or";
|
|
433
|
+
left: FilterExpression;
|
|
434
|
+
right: FilterExpression;
|
|
435
|
+
constructor(left: FilterExpression, right: FilterExpression);
|
|
436
|
+
}
|
|
437
|
+
declare class Not {
|
|
438
|
+
kind: "not";
|
|
439
|
+
expr: FilterExpression;
|
|
440
|
+
constructor(expr: FilterExpression);
|
|
441
|
+
}
|
|
442
|
+
declare class Id {
|
|
443
|
+
kind: "id";
|
|
444
|
+
pattern: StringOrRegExp;
|
|
445
|
+
constructor(pattern: StringOrRegExp);
|
|
446
|
+
}
|
|
447
|
+
declare class ModuleType$1 {
|
|
448
|
+
kind: "moduleType";
|
|
449
|
+
pattern: ModuleType;
|
|
450
|
+
constructor(pattern: ModuleType);
|
|
451
|
+
}
|
|
452
|
+
declare class Code {
|
|
453
|
+
kind: "code";
|
|
454
|
+
pattern: StringOrRegExp;
|
|
455
|
+
constructor(expr: StringOrRegExp);
|
|
456
|
+
}
|
|
457
|
+
declare class Include {
|
|
458
|
+
kind: "include";
|
|
459
|
+
expr: FilterExpression;
|
|
460
|
+
constructor(expr: FilterExpression);
|
|
461
|
+
}
|
|
462
|
+
declare class Exclude$1 {
|
|
463
|
+
kind: "exclude";
|
|
464
|
+
expr: FilterExpression;
|
|
465
|
+
constructor(expr: FilterExpression);
|
|
466
|
+
}
|
|
467
|
+
declare function and(left: FilterExpression, right: FilterExpression): And;
|
|
468
|
+
declare function or(left: FilterExpression, right: FilterExpression): Or;
|
|
469
|
+
declare function not(expr: FilterExpression): Not;
|
|
470
|
+
declare function id(pattern: StringOrRegExp): Id;
|
|
471
|
+
declare function moduleType(pattern: ModuleType): ModuleType$1;
|
|
472
|
+
declare function code(pattern: StringOrRegExp): Code;
|
|
473
|
+
declare function include(expr: FilterExpression): Include;
|
|
474
|
+
declare function exclude(expr: FilterExpression): Exclude$1;
|
|
475
|
+
|
|
418
476
|
//#endregion
|
|
419
477
|
//#region src/plugin/hook-filter.d.ts
|
|
420
|
-
type
|
|
478
|
+
type GeneralHookFilter<Value = StringOrRegExp> = MaybeArray<Value> | {
|
|
421
479
|
include?: MaybeArray<Value>
|
|
422
480
|
exclude?: MaybeArray<Value>
|
|
481
|
+
custom?: TopLevelFilterExpression[]
|
|
423
482
|
};
|
|
424
483
|
interface FormalModuleTypeFilter {
|
|
425
484
|
include?: ModuleType[];
|
|
@@ -458,9 +517,10 @@ interface HookFilter {
|
|
|
458
517
|
* }}
|
|
459
518
|
* ```
|
|
460
519
|
*/
|
|
461
|
-
id?:
|
|
520
|
+
id?: GeneralHookFilter;
|
|
462
521
|
moduleType?: ModuleTypeFilter;
|
|
463
|
-
code?:
|
|
522
|
+
code?: GeneralHookFilter;
|
|
523
|
+
custom?: TopLevelFilterExpression[];
|
|
464
524
|
}
|
|
465
525
|
|
|
466
526
|
//#endregion
|
|
@@ -802,11 +862,13 @@ type ParallelPluginHooks = Exclude<keyof FunctionPluginHooks | AddonHooks, First
|
|
|
802
862
|
type HookFilterExtension<K extends keyof FunctionPluginHooks> = K extends "transform" ? {
|
|
803
863
|
filter?: HookFilter
|
|
804
864
|
} : K extends "load" ? {
|
|
805
|
-
filter?: Pick<HookFilter, "id">
|
|
865
|
+
filter?: Pick<HookFilter, "id" | "custom">
|
|
806
866
|
} : K extends "resolveId" ? {
|
|
807
867
|
filter?: {
|
|
808
|
-
id?:
|
|
809
|
-
}
|
|
868
|
+
id?: GeneralHookFilter<RegExp>
|
|
869
|
+
} & Pick<HookFilter, "custom">
|
|
870
|
+
} : K extends "renderChunk" ? {
|
|
871
|
+
filter?: Pick<HookFilter, "code">
|
|
810
872
|
} : {};
|
|
811
873
|
type PluginHooks = { [K in keyof FunctionPluginHooks] : ObjectHook<K extends AsyncPluginHooks ? MakeAsync<FunctionPluginHooks[K]> : FunctionPluginHooks[K], HookFilterExtension<K> & (K extends ParallelPluginHooks ? {
|
|
812
874
|
/**
|
|
@@ -961,8 +1023,8 @@ interface InputOptions {
|
|
|
961
1023
|
shimMissingExports?: boolean;
|
|
962
1024
|
treeshake?: boolean | TreeshakingOptions;
|
|
963
1025
|
logLevel?: LogLevelOption;
|
|
964
|
-
onLog?: (level: LogLevel, log: RollupLog
|
|
965
|
-
onwarn?: (warning: RollupLog
|
|
1026
|
+
onLog?: (level: LogLevel, log: RollupLog, defaultHandler: LogOrStringHandler) => void;
|
|
1027
|
+
onwarn?: (warning: RollupLog, defaultHandler: (warning: RollupLogWithString | (() => RollupLogWithString)) => void) => void;
|
|
966
1028
|
moduleTypes?: ModuleTypes;
|
|
967
1029
|
experimental?: {
|
|
968
1030
|
enableComposingJsPlugins?: boolean
|
|
@@ -1065,4 +1127,4 @@ interface InputOptions {
|
|
|
1065
1127
|
}
|
|
1066
1128
|
|
|
1067
1129
|
//#endregion
|
|
1068
|
-
export { AddonFunction, AsyncPluginHooks, BuildOptions, BuiltinPlugin, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FunctionPluginHooks, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MaybePromise, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog
|
|
1130
|
+
export { AddonFunction, And, AsyncPluginHooks, BuildOptions, BuiltinPlugin, ChunkFileNamesFunction, ConfigExport, CustomPluginOptions, DefineParallelPluginResult, EmittedAsset, EmittedFile, ExistingRawSourceMap, ExternalOption, FilterExpression, FilterExpressionKind, FunctionPluginHooks, GeneralHookFilter, GetModuleInfo, GlobalsFunction, HookFilter, HookFilterExtension, ImportKind, InputOption, InputOptions, InternalModuleFormat, JsxOptions, LoadResult, LogLevel, LogLevelOption, LogOrStringHandler, LoggingFunction, MaybePromise, MinifyOptions, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleOptions, ModuleType, ModuleTypeFilter, NormalizedInputOptions, NormalizedOutputOptions, ObjectHook, OutputAsset, OutputBundle, OutputChunk, OutputOptions, ParallelPluginHooks, PartialNull, PartialResolvedId, Plugin, PluginContext, PluginContextMeta, PreRenderedAsset, RenderedChunk, RenderedModule, ResolveIdExtraOptions, ResolveIdResult, ResolvedId, RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, RolldownWatcher, RollupError, RollupLog, RollupLogWithString, SourceDescription, SourceMap, SourceMapInput, SourcemapIgnoreListOption, TopLevelFilterExpression, TransformPluginContext, TransformResult, TreeshakingOptions, VERSION, WarningHandlerWithDefault, WatchOptions$1 as WatchOptions, and, build, buildImportAnalysisPlugin, code, defineConfig, defineParallelPlugin, dynamicImportVarsPlugin, exclude, id, importGlobPlugin, include, isolatedDeclarationPlugin, jsonPlugin, loadFallbackPlugin, manifestPlugin, moduleFederationPlugin, modulePreloadPolyfillPlugin, moduleType, not, or, reportPlugin, rolldown, viteResolvePlugin, wasmFallbackPlugin, wasmHelperPlugin, watch, withFilter };
|