powerlines 0.23.2 → 0.23.3
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/api.d.cts +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/astro.d.cts +1 -1
- package/dist/astro.d.ts +1 -1
- package/dist/config.d.cts +1 -1
- package/dist/config.d.ts +1 -1
- package/dist/esbuild.d.cts +1 -1
- package/dist/esbuild.d.ts +1 -1
- package/dist/farm.d.cts +1 -1
- package/dist/farm.d.ts +1 -1
- package/dist/{hooks-D2UGCryi.d.ts → hooks-B3vzw6La.d.ts} +1 -1
- package/dist/{hooks-DJG3B-Hw.d.cts → hooks-YACA4jMY.d.cts} +1 -1
- package/dist/index.d.cts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/lib/config-file.d.cts +2 -1
- package/dist/lib/config-file.d.ts +2 -1
- package/dist/lib/index.d.cts +9 -9
- package/dist/lib/index.d.ts +9 -9
- package/dist/lib/logger.d.cts +2 -1
- package/dist/lib/logger.d.ts +2 -1
- package/dist/lib/typescript/compiler-host.d.cts +3 -1
- package/dist/lib/typescript/compiler-host.d.ts +3 -1
- package/dist/lib/typescript/index.d.cts +2 -2
- package/dist/lib/typescript/index.d.ts +2 -2
- package/dist/lib/typescript/isolated-decl.d.cts +2 -1
- package/dist/lib/typescript/isolated-decl.d.ts +2 -1
- package/dist/lib/typescript/program.d.cts +3 -1
- package/dist/lib/typescript/program.d.ts +3 -1
- package/dist/lib/unplugin/index.d.cts +2 -2
- package/dist/lib/unplugin/index.d.ts +2 -2
- package/dist/lib/unplugin/plugin.d.cts +2 -1
- package/dist/lib/unplugin/plugin.d.ts +2 -1
- package/dist/lib/unplugin/resolve-id.d.cts +3 -1
- package/dist/lib/unplugin/resolve-id.d.ts +3 -1
- package/dist/lib/utilities/file-header.d.cts +2 -1
- package/dist/lib/utilities/file-header.d.ts +2 -1
- package/dist/lib/utilities/index.d.cts +3 -3
- package/dist/lib/utilities/index.d.ts +3 -3
- package/dist/lib/utilities/meta.d.cts +2 -1
- package/dist/lib/utilities/meta.d.ts +2 -1
- package/dist/lib/utilities/worker.d.cts +2 -1
- package/dist/lib/utilities/worker.d.ts +2 -1
- package/dist/plugin-utils/index.d.cts +1 -1
- package/dist/plugin-utils/index.d.ts +1 -1
- package/dist/plugin-utils/merge.d.cts +2 -1
- package/dist/plugin-utils/merge.d.ts +2 -1
- package/dist/{resolved-D1ySEdUv.d.ts → resolved-BVakEeek.d.ts} +119 -1
- package/dist/{resolved-DYLxPDut.d.cts → resolved-Dem-rX6I.d.cts} +119 -1
- package/dist/rolldown.d.cts +1 -1
- package/dist/rolldown.d.ts +1 -1
- package/dist/rollup.d.cts +1 -1
- package/dist/rollup.d.ts +1 -1
- package/dist/rspack.d.cts +1 -1
- package/dist/rspack.d.ts +1 -1
- package/dist/types/babel.d.cts +1 -1
- package/dist/types/babel.d.ts +1 -1
- package/dist/types/build.d.cts +26 -1
- package/dist/types/build.d.ts +26 -1
- package/dist/types/commands.d.cts +1 -1
- package/dist/types/commands.d.ts +1 -1
- package/dist/types/config.d.cts +1 -1
- package/dist/types/config.d.ts +1 -1
- package/dist/types/context.d.cts +1 -1
- package/dist/types/context.d.ts +1 -1
- package/dist/types/hooks.d.cts +1 -1
- package/dist/types/hooks.d.ts +1 -1
- package/dist/types/index.d.cts +6 -6
- package/dist/types/index.d.ts +6 -6
- package/dist/types/internal.d.cts +5 -3
- package/dist/types/internal.d.ts +5 -3
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/dist/types/resolved.d.cts +1 -1
- package/dist/types/resolved.d.ts +1 -1
- package/dist/types/tsconfig.d.cts +8 -1
- package/dist/types/tsconfig.d.ts +8 -1
- package/dist/types/typedoc.d.cts +3 -1
- package/dist/types/typedoc.d.ts +3 -1
- package/dist/types/unplugin.d.cts +5 -2
- package/dist/types/unplugin.d.ts +5 -2
- package/dist/types/vfs.d.cts +15 -1
- package/dist/types/vfs.d.ts +15 -1
- package/dist/unloader.d.cts +1 -1
- package/dist/unloader.d.ts +1 -1
- package/dist/unplugin.d.cts +2 -2
- package/dist/unplugin.d.ts +2 -2
- package/dist/vite.d.cts +1 -1
- package/dist/vite.d.ts +1 -1
- package/dist/webpack.d.cts +1 -1
- package/dist/webpack.d.ts +1 -1
- package/package.json +10 -10
- package/dist/babel-types.d.ts +0 -292
|
@@ -26,6 +26,8 @@ import { VirtualFileSystemInterface, VirtualFile, PowerlinesWriteFileOptions, Vi
|
|
|
26
26
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
|
|
27
27
|
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
28
28
|
type Commands<TContext extends Context = Context> = Record<CommandType, (this: TContext) => MaybePromise<void>>;
|
|
29
|
+
declare type __ΩCommandType = any[];
|
|
30
|
+
declare type __ΩCommands = any[];
|
|
29
31
|
|
|
30
32
|
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
31
33
|
/**
|
|
@@ -257,6 +259,20 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
257
259
|
declare const PLUGIN_NON_HOOK_FIELDS: readonly ["name", "enforce", "dedupe", "dependsOn", "applyToEnvironment"];
|
|
258
260
|
type PluginNonHookFields = ArrayValues<typeof PLUGIN_NON_HOOK_FIELDS> | UnpluginBuildVariant;
|
|
259
261
|
|
|
262
|
+
declare type __ΩPluginHookObject = any[];
|
|
263
|
+
declare type __ΩPluginHook = any[];
|
|
264
|
+
declare type __ΩGenerateTypesResult = any[];
|
|
265
|
+
declare type __ΩConfigResult = any[];
|
|
266
|
+
declare type __ΩBasePluginHookFunctions = any[];
|
|
267
|
+
declare type __ΩBuildPlugin = any[];
|
|
268
|
+
declare type __ΩExternalPluginHookFunctionsVariant = any[];
|
|
269
|
+
declare type __ΩExternalPluginHookFunctions = any[];
|
|
270
|
+
declare type __ΩPluginHookFunctions = any[];
|
|
271
|
+
declare type __ΩPluginHooks = any[];
|
|
272
|
+
declare type __ΩPluginBuildPlugins = any[];
|
|
273
|
+
declare type __ΩPlugin = any[];
|
|
274
|
+
declare type __ΩPluginNonHookFields = any[];
|
|
275
|
+
|
|
260
276
|
type BaseHooks<TContext extends PluginContext = PluginContext> = BasePluginHookFunctions<TContext>;
|
|
261
277
|
type BaseHookKeys<TContext extends PluginContext = PluginContext> = keyof BaseHooks<TContext>;
|
|
262
278
|
type ExternalHooks<TContext extends PluginContext = PluginContext> = ExternalPluginHookFunctions<TContext>;
|
|
@@ -286,6 +302,20 @@ type InferHookHandler<TContext extends PluginContext, TKey extends HookKeys<TCon
|
|
|
286
302
|
type InferHookReturnType<TContext extends PluginContext, TKey extends HookKeys<TContext>> = ReturnType<InferHookHandler<TContext, TKey>> extends Promise<infer U> ? U extends Promise<infer V> ? V : U : ReturnType<InferHookHandler<TContext, TKey>>;
|
|
287
303
|
type InferHookParameters<TContext extends PluginContext, TKey extends HookKeys<TContext>> = Parameters<InferHookHandler<TContext, TKey>>;
|
|
288
304
|
type InferHookThisType<TContext extends PluginContext, TKey extends HookKeys<TContext>> = ThisParameterType<InferHookHandler<TContext, TKey>>;
|
|
305
|
+
declare type __ΩBaseHooks = any[];
|
|
306
|
+
declare type __ΩBaseHookKeys = any[];
|
|
307
|
+
declare type __ΩExternalHooks = any[];
|
|
308
|
+
declare type __ΩExternalHookKeys = any[];
|
|
309
|
+
declare type __ΩHooks = any[];
|
|
310
|
+
declare type __ΩHookKeys = any[];
|
|
311
|
+
declare type __ΩBaseHooksListItem = any[];
|
|
312
|
+
declare type __ΩBaseHooksList = any[];
|
|
313
|
+
declare type __ΩExternalHooksListItem = any[];
|
|
314
|
+
declare type __ΩHooksList = any[];
|
|
315
|
+
declare type __ΩInferHookHandler = any[];
|
|
316
|
+
declare type __ΩInferHookReturnType = any[];
|
|
317
|
+
declare type __ΩInferHookParameters = any[];
|
|
318
|
+
declare type __ΩInferHookThisType = any[];
|
|
289
319
|
|
|
290
320
|
/**
|
|
291
321
|
* The severity level of a {@link LogRecord}.
|
|
@@ -668,6 +698,23 @@ interface SerializedVirtualFileSystem {
|
|
|
668
698
|
virtualFiles: DirectoryJSON;
|
|
669
699
|
virtualFilesMeta: Record<string, Partial<VirtualFileMetadata>>;
|
|
670
700
|
}
|
|
701
|
+
declare type __ΩLogLevel = any[];
|
|
702
|
+
declare type __ΩWorkerProcess = any[];
|
|
703
|
+
declare type __ΩMetaInfo = any[];
|
|
704
|
+
declare type __ΩResolver = any[];
|
|
705
|
+
declare type __ΩTransformResult = any[];
|
|
706
|
+
declare type __ΩSourceFile = any[];
|
|
707
|
+
declare type __ΩUnimportContext = any[];
|
|
708
|
+
declare type __ΩSelectHooksOptions = any[];
|
|
709
|
+
declare type __ΩInitContextOptions = any[];
|
|
710
|
+
declare type __ΩUnresolvedContext = any[];
|
|
711
|
+
declare type __ΩContext = any[];
|
|
712
|
+
declare type __ΩAPIContext = any[];
|
|
713
|
+
declare type __ΩEnvironmentContextPlugin = any[];
|
|
714
|
+
declare type __ΩEnvironmentContext = any[];
|
|
715
|
+
declare type __ΩPluginContext = any[];
|
|
716
|
+
declare type __ΩBuildPluginContext = any[];
|
|
717
|
+
declare type __ΩSerializedVirtualFileSystem = any[];
|
|
671
718
|
|
|
672
719
|
interface NamedImportDefinition {
|
|
673
720
|
name: string;
|
|
@@ -729,6 +776,19 @@ interface ImportSpecifier {
|
|
|
729
776
|
module: string;
|
|
730
777
|
imported: string;
|
|
731
778
|
}
|
|
779
|
+
declare type __ΩNamedImportDefinition = any[];
|
|
780
|
+
declare type __ΩDefaultImportDefinition = any[];
|
|
781
|
+
declare type __ΩImportDefinition = any[];
|
|
782
|
+
declare type __ΩBabelPluginPass = any[];
|
|
783
|
+
declare type __ΩBabelTransformPluginFilter = any[];
|
|
784
|
+
declare type __ΩBabelTransformPlugin = any[];
|
|
785
|
+
declare type __ΩBabelTransformPluginOptions = any[];
|
|
786
|
+
declare type __ΩResolvedBabelTransformPluginOptions = any[];
|
|
787
|
+
declare type __ΩBabelTransformInput = any[];
|
|
788
|
+
declare type __ΩBabelTransformPluginBuilderParams = any[];
|
|
789
|
+
declare type __ΩBabelTransformPluginBuilder = any[];
|
|
790
|
+
declare type __ΩDeclareBabelTransformPluginReturn = any[];
|
|
791
|
+
declare type __ΩImportSpecifier = any[];
|
|
732
792
|
|
|
733
793
|
type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
734
794
|
/**
|
|
@@ -1114,6 +1174,48 @@ type UserConfigFnObject = (env: ConfigEnv) => DeepPartial$1<UserConfig>;
|
|
|
1114
1174
|
type UserConfigFnPromise = (env: ConfigEnv) => Promise<DeepPartial$1<UserConfig>>;
|
|
1115
1175
|
type UserConfigFn = (env: ConfigEnv) => UserConfig | Promise<DeepPartial$1<UserConfig>>;
|
|
1116
1176
|
type UserConfigExport = DeepPartial$1<UserConfig> | Promise<DeepPartial$1<UserConfig>> | UserConfigFnObject | UserConfigFnPromise | UserConfigFn;
|
|
1177
|
+
declare type __ΩLogFn = any[];
|
|
1178
|
+
declare type __ΩWorkspaceConfig = any[];
|
|
1179
|
+
declare type __ΩPluginFactory = any[];
|
|
1180
|
+
declare type __ΩPluginConfigTuple = any[];
|
|
1181
|
+
declare type __ΩPluginConfigObject = any[];
|
|
1182
|
+
declare type __ΩPluginConfig = any[];
|
|
1183
|
+
declare type __ΩPartialPlugin = any[];
|
|
1184
|
+
declare type __ΩPartialPluginFactory = any[];
|
|
1185
|
+
declare type __ΩProjectType = any[];
|
|
1186
|
+
declare type __ΩBabelUserConfig = any[];
|
|
1187
|
+
declare type __ΩOutputConfig = any[];
|
|
1188
|
+
declare type __ΩBaseConfig = any[];
|
|
1189
|
+
declare type __ΩEnvironmentConfig = any[];
|
|
1190
|
+
declare type __ΩCommonUserConfig = any[];
|
|
1191
|
+
declare type __ΩUserConfig = any[];
|
|
1192
|
+
declare type __ΩWebpackUserConfig = any[];
|
|
1193
|
+
declare type __ΩRspackUserConfig = any[];
|
|
1194
|
+
declare type __ΩRollupUserConfig = any[];
|
|
1195
|
+
declare type __ΩRolldownUserConfig = any[];
|
|
1196
|
+
declare type __ΩViteUserConfig = any[];
|
|
1197
|
+
declare type __ΩESBuildUserConfig = any[];
|
|
1198
|
+
declare type __ΩUnbuildUserConfig = any[];
|
|
1199
|
+
declare type __ΩTsupUserConfig = any[];
|
|
1200
|
+
declare type __ΩFarmUserConfig = any[];
|
|
1201
|
+
declare type __ΩInferUserConfig = any[];
|
|
1202
|
+
declare type __ΩInitialUserConfig = any[];
|
|
1203
|
+
declare type __ΩParsedUserConfig = any[];
|
|
1204
|
+
declare type __ΩPowerlinesCommand = any[];
|
|
1205
|
+
declare type __ΩInlineConfig = any[];
|
|
1206
|
+
declare type __ΩNewInlineConfig = any[];
|
|
1207
|
+
declare type __ΩCleanInlineConfig = any[];
|
|
1208
|
+
declare type __ΩPrepareInlineConfig = any[];
|
|
1209
|
+
declare type __ΩBuildInlineConfig = any[];
|
|
1210
|
+
declare type __ΩLintInlineConfig = any[];
|
|
1211
|
+
declare type __ΩDocsInlineConfig = any[];
|
|
1212
|
+
declare type __ΩDeployInlineConfig = any[];
|
|
1213
|
+
declare type __ΩConfigEnv = any[];
|
|
1214
|
+
declare type __ΩAnyUserConfig = any[];
|
|
1215
|
+
declare type __ΩUserConfigFnObject = any[];
|
|
1216
|
+
declare type __ΩUserConfigFnPromise = any[];
|
|
1217
|
+
declare type __ΩUserConfigFn = any[];
|
|
1218
|
+
declare type __ΩUserConfigExport = any[];
|
|
1117
1219
|
|
|
1118
1220
|
interface ResolvedEntryTypeDefinition extends TypeDefinition {
|
|
1119
1221
|
/**
|
|
@@ -1198,5 +1300,21 @@ type TsupResolvedConfig = ResolvedConfig<TsupUserConfig>;
|
|
|
1198
1300
|
type UnbuildResolvedConfig = ResolvedConfig<UnbuildUserConfig>;
|
|
1199
1301
|
type FarmResolvedConfig = ResolvedConfig<FarmUserConfig>;
|
|
1200
1302
|
type InferResolvedConfig<TBuildVariant extends BuildVariant | undefined> = TBuildVariant extends undefined ? ResolvedConfig : TBuildVariant extends "webpack" ? WebpackResolvedConfig : TBuildVariant extends "rspack" ? RspackResolvedConfig : TBuildVariant extends "vite" ? ViteResolvedConfig : TBuildVariant extends "esbuild" ? ESBuildResolvedConfig : TBuildVariant extends "unbuild" ? UnbuildResolvedConfig : TBuildVariant extends "tsup" ? TsupResolvedConfig : TBuildVariant extends "rolldown" ? RolldownResolvedConfig : TBuildVariant extends "rollup" ? RollupResolvedConfig : TBuildVariant extends "farm" ? FarmResolvedConfig : ResolvedConfig;
|
|
1303
|
+
declare type __ΩResolvedEntryTypeDefinition = any[];
|
|
1304
|
+
declare type __ΩBabelResolvedConfig = any[];
|
|
1305
|
+
declare type __ΩEnvironmentResolvedConfig = any[];
|
|
1306
|
+
declare type __ΩResolvedAssetGlob = any[];
|
|
1307
|
+
declare type __ΩOutputResolvedConfig = any[];
|
|
1308
|
+
declare type __ΩResolvedConfig = any[];
|
|
1309
|
+
declare type __ΩViteResolvedConfig = any[];
|
|
1310
|
+
declare type __ΩWebpackResolvedConfig = any[];
|
|
1311
|
+
declare type __ΩRspackResolvedConfig = any[];
|
|
1312
|
+
declare type __ΩESBuildResolvedConfig = any[];
|
|
1313
|
+
declare type __ΩRollupResolvedConfig = any[];
|
|
1314
|
+
declare type __ΩRolldownResolvedConfig = any[];
|
|
1315
|
+
declare type __ΩTsupResolvedConfig = any[];
|
|
1316
|
+
declare type __ΩUnbuildResolvedConfig = any[];
|
|
1317
|
+
declare type __ΩFarmResolvedConfig = any[];
|
|
1318
|
+
declare type __ΩInferResolvedConfig = any[];
|
|
1201
1319
|
|
|
1202
|
-
export { type
|
|
1320
|
+
export { type TsupUserConfig as $, type PartialPlugin as A, type BabelPluginPass as B, type CommandType as C, type DefaultImportDefinition as D, type PartialPluginFactory as E, type ProjectType as F, type BabelUserConfig as G, type BaseConfig as H, type ImportDefinition as I, type EnvironmentConfig as J, type CommonUserConfig as K, type LogFn as L, type WebpackUserConfig as M, type NamedImportDefinition as N, type OutputConfig as O, type PluginFactory as P, type RspackUserConfig as Q, type ResolvedBabelTransformPluginOptions as R, SUPPORTED_COMMANDS as S, type RollupUserConfig as T, type UserConfig as U, type RolldownUserConfig as V, type WorkspaceConfig as W, type ViteUserConfig as X, type ESBuildUserConfig as Y, type UnbuildUserConfig as Z, type __ΩNamedImportDefinition as _, type BabelTransformPluginFilter as a, type MetaInfo as a$, type FarmUserConfig as a0, type InferUserConfig as a1, type InitialUserConfig as a2, type ParsedUserConfig as a3, type PowerlinesCommand as a4, type InlineConfig as a5, type NewInlineConfig as a6, type CleanInlineConfig as a7, type PrepareInlineConfig as a8, type BuildInlineConfig as a9, type __ΩRollupUserConfig as aA, type __ΩRolldownUserConfig as aB, type __ΩViteUserConfig as aC, type __ΩESBuildUserConfig as aD, type __ΩUnbuildUserConfig as aE, type __ΩTsupUserConfig as aF, type __ΩFarmUserConfig as aG, type __ΩInferUserConfig as aH, type __ΩInitialUserConfig as aI, type __ΩParsedUserConfig as aJ, type __ΩPowerlinesCommand as aK, type __ΩInlineConfig as aL, type __ΩNewInlineConfig as aM, type __ΩCleanInlineConfig as aN, type __ΩPrepareInlineConfig as aO, type __ΩBuildInlineConfig as aP, type __ΩLintInlineConfig as aQ, type __ΩDocsInlineConfig as aR, type __ΩDeployInlineConfig as aS, type __ΩConfigEnv as aT, type __ΩAnyUserConfig as aU, type __ΩUserConfigFnObject as aV, type __ΩUserConfigFnPromise as aW, type __ΩUserConfigFn as aX, type __ΩUserConfigExport as aY, LogLevel as aZ, type WorkerProcess as a_, type LintInlineConfig as aa, type DocsInlineConfig as ab, type DeployInlineConfig as ac, type ConfigEnv as ad, type AnyUserConfig as ae, type UserConfigFnObject as af, type UserConfigFnPromise as ag, type UserConfigFn as ah, type UserConfigExport as ai, type __ΩLogFn as aj, type __ΩWorkspaceConfig as ak, type __ΩPluginFactory as al, type __ΩPluginConfigTuple as am, type __ΩPluginConfigObject as an, type __ΩPluginConfig as ao, type __ΩPartialPlugin as ap, type __ΩPartialPluginFactory as aq, type __ΩProjectType as ar, type __ΩBabelUserConfig as as, type __ΩOutputConfig as at, type __ΩBaseConfig as au, type __ΩEnvironmentConfig as av, type __ΩCommonUserConfig as aw, type __ΩUserConfig as ax, type __ΩWebpackUserConfig as ay, type __ΩRspackUserConfig as az, type BabelTransformPlugin as b, type BasePluginHookFunctions as b$, type Resolver as b0, type TransformResult as b1, type SourceFile as b2, type UnimportContext as b3, type SelectHooksOptions as b4, type InitContextOptions as b5, type UnresolvedContext as b6, type Context as b7, type APIContext as b8, type EnvironmentContextPlugin as b9, type HookKeys as bA, type BaseHooksListItem as bB, type BaseHooksList as bC, type ExternalHooksListItem as bD, type HooksList as bE, type InferHookHandler as bF, type InferHookReturnType as bG, type InferHookParameters as bH, type InferHookThisType as bI, type __ΩBaseHooks as bJ, type __ΩBaseHookKeys as bK, type __ΩExternalHooks as bL, type __ΩExternalHookKeys as bM, type __ΩHooks as bN, type __ΩHookKeys as bO, type __ΩBaseHooksListItem as bP, type __ΩBaseHooksList as bQ, type __ΩExternalHooksListItem as bR, type __ΩHooksList as bS, type __ΩInferHookHandler as bT, type __ΩInferHookReturnType as bU, type __ΩInferHookParameters as bV, type __ΩInferHookThisType as bW, type PluginHookObject as bX, type PluginHook as bY, type GenerateTypesResult as bZ, type ConfigResult as b_, type EnvironmentContext as ba, type PluginContext as bb, type BuildPluginContext as bc, type SerializedVirtualFileSystem as bd, type __ΩLogLevel as be, type __ΩWorkerProcess as bf, type __ΩMetaInfo as bg, type __ΩResolver as bh, type __ΩTransformResult as bi, type __ΩSourceFile as bj, type __ΩUnimportContext as bk, type __ΩSelectHooksOptions as bl, type __ΩInitContextOptions as bm, type __ΩUnresolvedContext as bn, type __ΩContext as bo, type __ΩAPIContext as bp, type __ΩEnvironmentContextPlugin as bq, type __ΩEnvironmentContext as br, type __ΩPluginContext as bs, type __ΩBuildPluginContext as bt, type __ΩSerializedVirtualFileSystem as bu, type BaseHooks as bv, type BaseHookKeys as bw, type ExternalHooks as bx, type ExternalHookKeys as by, type Hooks as bz, type BabelTransformPluginOptions as c, type BuildPlugin as c0, type ExternalPluginHookFunctionsVariant as c1, type ExternalPluginHookFunctions as c2, type PluginHookFunctions as c3, type PluginHooks as c4, type PluginBuildPlugins as c5, type Plugin as c6, PLUGIN_NON_HOOK_FIELDS as c7, type PluginNonHookFields as c8, type __ΩPluginHookObject as c9, type FarmResolvedConfig as cA, type InferResolvedConfig as cB, type __ΩResolvedEntryTypeDefinition as cC, type __ΩBabelResolvedConfig as cD, type __ΩEnvironmentResolvedConfig as cE, type __ΩResolvedAssetGlob as cF, type __ΩOutputResolvedConfig as cG, type __ΩResolvedConfig as cH, type __ΩViteResolvedConfig as cI, type __ΩWebpackResolvedConfig as cJ, type __ΩRspackResolvedConfig as cK, type __ΩESBuildResolvedConfig as cL, type __ΩRollupResolvedConfig as cM, type __ΩRolldownResolvedConfig as cN, type __ΩTsupResolvedConfig as cO, type __ΩUnbuildResolvedConfig as cP, type __ΩFarmResolvedConfig as cQ, type __ΩInferResolvedConfig as cR, type __ΩPluginHook as ca, type __ΩGenerateTypesResult as cb, type __ΩConfigResult as cc, type __ΩBasePluginHookFunctions as cd, type __ΩBuildPlugin as ce, type __ΩExternalPluginHookFunctionsVariant as cf, type __ΩExternalPluginHookFunctions as cg, type __ΩPluginHookFunctions as ch, type __ΩPluginHooks as ci, type __ΩPluginBuildPlugins as cj, type __ΩPlugin as ck, type __ΩPluginNonHookFields as cl, type ResolvedEntryTypeDefinition as cm, type BabelResolvedConfig as cn, type EnvironmentResolvedConfig as co, type ResolvedAssetGlob as cp, type OutputResolvedConfig as cq, type ResolvedConfig as cr, type ViteResolvedConfig as cs, type WebpackResolvedConfig as ct, type RspackResolvedConfig as cu, type ESBuildResolvedConfig as cv, type RollupResolvedConfig as cw, type RolldownResolvedConfig as cx, type TsupResolvedConfig as cy, type UnbuildResolvedConfig as cz, type BabelTransformInput as d, type BabelTransformPluginBuilderParams as e, type BabelTransformPluginBuilder as f, type DeclareBabelTransformPluginReturn as g, type ImportSpecifier as h, type __ΩDefaultImportDefinition as i, type __ΩImportDefinition as j, type __ΩBabelPluginPass as k, type __ΩBabelTransformPluginFilter as l, type __ΩBabelTransformPlugin as m, type __ΩBabelTransformPluginOptions as n, type __ΩResolvedBabelTransformPluginOptions as o, type __ΩBabelTransformInput as p, type __ΩBabelTransformPluginBuilderParams as q, type __ΩBabelTransformPluginBuilder as r, type __ΩDeclareBabelTransformPluginReturn as s, type __ΩImportSpecifier as t, type Commands as u, type __ΩCommandType as v, type __ΩCommands as w, type PluginConfigTuple as x, type PluginConfigObject as y, type PluginConfig as z };
|
|
@@ -26,6 +26,8 @@ import { VirtualFileSystemInterface, VirtualFile, PowerlinesWriteFileOptions, Vi
|
|
|
26
26
|
declare const SUPPORTED_COMMANDS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
|
|
27
27
|
type CommandType = ArrayValues<typeof SUPPORTED_COMMANDS>;
|
|
28
28
|
type Commands<TContext extends Context = Context> = Record<CommandType, (this: TContext) => MaybePromise<void>>;
|
|
29
|
+
declare type __ΩCommandType = any[];
|
|
30
|
+
declare type __ΩCommands = any[];
|
|
29
31
|
|
|
30
32
|
interface PluginHookObject<THookFunction extends FunctionLike, TFilter extends keyof HookFilter = never> {
|
|
31
33
|
/**
|
|
@@ -257,6 +259,20 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
257
259
|
declare const PLUGIN_NON_HOOK_FIELDS: readonly ["name", "enforce", "dedupe", "dependsOn", "applyToEnvironment"];
|
|
258
260
|
type PluginNonHookFields = ArrayValues<typeof PLUGIN_NON_HOOK_FIELDS> | UnpluginBuildVariant;
|
|
259
261
|
|
|
262
|
+
declare type __ΩPluginHookObject = any[];
|
|
263
|
+
declare type __ΩPluginHook = any[];
|
|
264
|
+
declare type __ΩGenerateTypesResult = any[];
|
|
265
|
+
declare type __ΩConfigResult = any[];
|
|
266
|
+
declare type __ΩBasePluginHookFunctions = any[];
|
|
267
|
+
declare type __ΩBuildPlugin = any[];
|
|
268
|
+
declare type __ΩExternalPluginHookFunctionsVariant = any[];
|
|
269
|
+
declare type __ΩExternalPluginHookFunctions = any[];
|
|
270
|
+
declare type __ΩPluginHookFunctions = any[];
|
|
271
|
+
declare type __ΩPluginHooks = any[];
|
|
272
|
+
declare type __ΩPluginBuildPlugins = any[];
|
|
273
|
+
declare type __ΩPlugin = any[];
|
|
274
|
+
declare type __ΩPluginNonHookFields = any[];
|
|
275
|
+
|
|
260
276
|
type BaseHooks<TContext extends PluginContext = PluginContext> = BasePluginHookFunctions<TContext>;
|
|
261
277
|
type BaseHookKeys<TContext extends PluginContext = PluginContext> = keyof BaseHooks<TContext>;
|
|
262
278
|
type ExternalHooks<TContext extends PluginContext = PluginContext> = ExternalPluginHookFunctions<TContext>;
|
|
@@ -286,6 +302,20 @@ type InferHookHandler<TContext extends PluginContext, TKey extends HookKeys<TCon
|
|
|
286
302
|
type InferHookReturnType<TContext extends PluginContext, TKey extends HookKeys<TContext>> = ReturnType<InferHookHandler<TContext, TKey>> extends Promise<infer U> ? U extends Promise<infer V> ? V : U : ReturnType<InferHookHandler<TContext, TKey>>;
|
|
287
303
|
type InferHookParameters<TContext extends PluginContext, TKey extends HookKeys<TContext>> = Parameters<InferHookHandler<TContext, TKey>>;
|
|
288
304
|
type InferHookThisType<TContext extends PluginContext, TKey extends HookKeys<TContext>> = ThisParameterType<InferHookHandler<TContext, TKey>>;
|
|
305
|
+
declare type __ΩBaseHooks = any[];
|
|
306
|
+
declare type __ΩBaseHookKeys = any[];
|
|
307
|
+
declare type __ΩExternalHooks = any[];
|
|
308
|
+
declare type __ΩExternalHookKeys = any[];
|
|
309
|
+
declare type __ΩHooks = any[];
|
|
310
|
+
declare type __ΩHookKeys = any[];
|
|
311
|
+
declare type __ΩBaseHooksListItem = any[];
|
|
312
|
+
declare type __ΩBaseHooksList = any[];
|
|
313
|
+
declare type __ΩExternalHooksListItem = any[];
|
|
314
|
+
declare type __ΩHooksList = any[];
|
|
315
|
+
declare type __ΩInferHookHandler = any[];
|
|
316
|
+
declare type __ΩInferHookReturnType = any[];
|
|
317
|
+
declare type __ΩInferHookParameters = any[];
|
|
318
|
+
declare type __ΩInferHookThisType = any[];
|
|
289
319
|
|
|
290
320
|
/**
|
|
291
321
|
* The severity level of a {@link LogRecord}.
|
|
@@ -668,6 +698,23 @@ interface SerializedVirtualFileSystem {
|
|
|
668
698
|
virtualFiles: DirectoryJSON;
|
|
669
699
|
virtualFilesMeta: Record<string, Partial<VirtualFileMetadata>>;
|
|
670
700
|
}
|
|
701
|
+
declare type __ΩLogLevel = any[];
|
|
702
|
+
declare type __ΩWorkerProcess = any[];
|
|
703
|
+
declare type __ΩMetaInfo = any[];
|
|
704
|
+
declare type __ΩResolver = any[];
|
|
705
|
+
declare type __ΩTransformResult = any[];
|
|
706
|
+
declare type __ΩSourceFile = any[];
|
|
707
|
+
declare type __ΩUnimportContext = any[];
|
|
708
|
+
declare type __ΩSelectHooksOptions = any[];
|
|
709
|
+
declare type __ΩInitContextOptions = any[];
|
|
710
|
+
declare type __ΩUnresolvedContext = any[];
|
|
711
|
+
declare type __ΩContext = any[];
|
|
712
|
+
declare type __ΩAPIContext = any[];
|
|
713
|
+
declare type __ΩEnvironmentContextPlugin = any[];
|
|
714
|
+
declare type __ΩEnvironmentContext = any[];
|
|
715
|
+
declare type __ΩPluginContext = any[];
|
|
716
|
+
declare type __ΩBuildPluginContext = any[];
|
|
717
|
+
declare type __ΩSerializedVirtualFileSystem = any[];
|
|
671
718
|
|
|
672
719
|
interface NamedImportDefinition {
|
|
673
720
|
name: string;
|
|
@@ -729,6 +776,19 @@ interface ImportSpecifier {
|
|
|
729
776
|
module: string;
|
|
730
777
|
imported: string;
|
|
731
778
|
}
|
|
779
|
+
declare type __ΩNamedImportDefinition = any[];
|
|
780
|
+
declare type __ΩDefaultImportDefinition = any[];
|
|
781
|
+
declare type __ΩImportDefinition = any[];
|
|
782
|
+
declare type __ΩBabelPluginPass = any[];
|
|
783
|
+
declare type __ΩBabelTransformPluginFilter = any[];
|
|
784
|
+
declare type __ΩBabelTransformPlugin = any[];
|
|
785
|
+
declare type __ΩBabelTransformPluginOptions = any[];
|
|
786
|
+
declare type __ΩResolvedBabelTransformPluginOptions = any[];
|
|
787
|
+
declare type __ΩBabelTransformInput = any[];
|
|
788
|
+
declare type __ΩBabelTransformPluginBuilderParams = any[];
|
|
789
|
+
declare type __ΩBabelTransformPluginBuilder = any[];
|
|
790
|
+
declare type __ΩDeclareBabelTransformPluginReturn = any[];
|
|
791
|
+
declare type __ΩImportSpecifier = any[];
|
|
732
792
|
|
|
733
793
|
type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
734
794
|
/**
|
|
@@ -1114,6 +1174,48 @@ type UserConfigFnObject = (env: ConfigEnv) => DeepPartial$1<UserConfig>;
|
|
|
1114
1174
|
type UserConfigFnPromise = (env: ConfigEnv) => Promise<DeepPartial$1<UserConfig>>;
|
|
1115
1175
|
type UserConfigFn = (env: ConfigEnv) => UserConfig | Promise<DeepPartial$1<UserConfig>>;
|
|
1116
1176
|
type UserConfigExport = DeepPartial$1<UserConfig> | Promise<DeepPartial$1<UserConfig>> | UserConfigFnObject | UserConfigFnPromise | UserConfigFn;
|
|
1177
|
+
declare type __ΩLogFn = any[];
|
|
1178
|
+
declare type __ΩWorkspaceConfig = any[];
|
|
1179
|
+
declare type __ΩPluginFactory = any[];
|
|
1180
|
+
declare type __ΩPluginConfigTuple = any[];
|
|
1181
|
+
declare type __ΩPluginConfigObject = any[];
|
|
1182
|
+
declare type __ΩPluginConfig = any[];
|
|
1183
|
+
declare type __ΩPartialPlugin = any[];
|
|
1184
|
+
declare type __ΩPartialPluginFactory = any[];
|
|
1185
|
+
declare type __ΩProjectType = any[];
|
|
1186
|
+
declare type __ΩBabelUserConfig = any[];
|
|
1187
|
+
declare type __ΩOutputConfig = any[];
|
|
1188
|
+
declare type __ΩBaseConfig = any[];
|
|
1189
|
+
declare type __ΩEnvironmentConfig = any[];
|
|
1190
|
+
declare type __ΩCommonUserConfig = any[];
|
|
1191
|
+
declare type __ΩUserConfig = any[];
|
|
1192
|
+
declare type __ΩWebpackUserConfig = any[];
|
|
1193
|
+
declare type __ΩRspackUserConfig = any[];
|
|
1194
|
+
declare type __ΩRollupUserConfig = any[];
|
|
1195
|
+
declare type __ΩRolldownUserConfig = any[];
|
|
1196
|
+
declare type __ΩViteUserConfig = any[];
|
|
1197
|
+
declare type __ΩESBuildUserConfig = any[];
|
|
1198
|
+
declare type __ΩUnbuildUserConfig = any[];
|
|
1199
|
+
declare type __ΩTsupUserConfig = any[];
|
|
1200
|
+
declare type __ΩFarmUserConfig = any[];
|
|
1201
|
+
declare type __ΩInferUserConfig = any[];
|
|
1202
|
+
declare type __ΩInitialUserConfig = any[];
|
|
1203
|
+
declare type __ΩParsedUserConfig = any[];
|
|
1204
|
+
declare type __ΩPowerlinesCommand = any[];
|
|
1205
|
+
declare type __ΩInlineConfig = any[];
|
|
1206
|
+
declare type __ΩNewInlineConfig = any[];
|
|
1207
|
+
declare type __ΩCleanInlineConfig = any[];
|
|
1208
|
+
declare type __ΩPrepareInlineConfig = any[];
|
|
1209
|
+
declare type __ΩBuildInlineConfig = any[];
|
|
1210
|
+
declare type __ΩLintInlineConfig = any[];
|
|
1211
|
+
declare type __ΩDocsInlineConfig = any[];
|
|
1212
|
+
declare type __ΩDeployInlineConfig = any[];
|
|
1213
|
+
declare type __ΩConfigEnv = any[];
|
|
1214
|
+
declare type __ΩAnyUserConfig = any[];
|
|
1215
|
+
declare type __ΩUserConfigFnObject = any[];
|
|
1216
|
+
declare type __ΩUserConfigFnPromise = any[];
|
|
1217
|
+
declare type __ΩUserConfigFn = any[];
|
|
1218
|
+
declare type __ΩUserConfigExport = any[];
|
|
1117
1219
|
|
|
1118
1220
|
interface ResolvedEntryTypeDefinition extends TypeDefinition {
|
|
1119
1221
|
/**
|
|
@@ -1198,5 +1300,21 @@ type TsupResolvedConfig = ResolvedConfig<TsupUserConfig>;
|
|
|
1198
1300
|
type UnbuildResolvedConfig = ResolvedConfig<UnbuildUserConfig>;
|
|
1199
1301
|
type FarmResolvedConfig = ResolvedConfig<FarmUserConfig>;
|
|
1200
1302
|
type InferResolvedConfig<TBuildVariant extends BuildVariant | undefined> = TBuildVariant extends undefined ? ResolvedConfig : TBuildVariant extends "webpack" ? WebpackResolvedConfig : TBuildVariant extends "rspack" ? RspackResolvedConfig : TBuildVariant extends "vite" ? ViteResolvedConfig : TBuildVariant extends "esbuild" ? ESBuildResolvedConfig : TBuildVariant extends "unbuild" ? UnbuildResolvedConfig : TBuildVariant extends "tsup" ? TsupResolvedConfig : TBuildVariant extends "rolldown" ? RolldownResolvedConfig : TBuildVariant extends "rollup" ? RollupResolvedConfig : TBuildVariant extends "farm" ? FarmResolvedConfig : ResolvedConfig;
|
|
1303
|
+
declare type __ΩResolvedEntryTypeDefinition = any[];
|
|
1304
|
+
declare type __ΩBabelResolvedConfig = any[];
|
|
1305
|
+
declare type __ΩEnvironmentResolvedConfig = any[];
|
|
1306
|
+
declare type __ΩResolvedAssetGlob = any[];
|
|
1307
|
+
declare type __ΩOutputResolvedConfig = any[];
|
|
1308
|
+
declare type __ΩResolvedConfig = any[];
|
|
1309
|
+
declare type __ΩViteResolvedConfig = any[];
|
|
1310
|
+
declare type __ΩWebpackResolvedConfig = any[];
|
|
1311
|
+
declare type __ΩRspackResolvedConfig = any[];
|
|
1312
|
+
declare type __ΩESBuildResolvedConfig = any[];
|
|
1313
|
+
declare type __ΩRollupResolvedConfig = any[];
|
|
1314
|
+
declare type __ΩRolldownResolvedConfig = any[];
|
|
1315
|
+
declare type __ΩTsupResolvedConfig = any[];
|
|
1316
|
+
declare type __ΩUnbuildResolvedConfig = any[];
|
|
1317
|
+
declare type __ΩFarmResolvedConfig = any[];
|
|
1318
|
+
declare type __ΩInferResolvedConfig = any[];
|
|
1201
1319
|
|
|
1202
|
-
export { type
|
|
1320
|
+
export { type TsupUserConfig as $, type PartialPlugin as A, type BabelPluginPass as B, type CommandType as C, type DefaultImportDefinition as D, type PartialPluginFactory as E, type ProjectType as F, type BabelUserConfig as G, type BaseConfig as H, type ImportDefinition as I, type EnvironmentConfig as J, type CommonUserConfig as K, type LogFn as L, type WebpackUserConfig as M, type NamedImportDefinition as N, type OutputConfig as O, type PluginFactory as P, type RspackUserConfig as Q, type ResolvedBabelTransformPluginOptions as R, SUPPORTED_COMMANDS as S, type RollupUserConfig as T, type UserConfig as U, type RolldownUserConfig as V, type WorkspaceConfig as W, type ViteUserConfig as X, type ESBuildUserConfig as Y, type UnbuildUserConfig as Z, type __ΩNamedImportDefinition as _, type BabelTransformPluginFilter as a, type MetaInfo as a$, type FarmUserConfig as a0, type InferUserConfig as a1, type InitialUserConfig as a2, type ParsedUserConfig as a3, type PowerlinesCommand as a4, type InlineConfig as a5, type NewInlineConfig as a6, type CleanInlineConfig as a7, type PrepareInlineConfig as a8, type BuildInlineConfig as a9, type __ΩRollupUserConfig as aA, type __ΩRolldownUserConfig as aB, type __ΩViteUserConfig as aC, type __ΩESBuildUserConfig as aD, type __ΩUnbuildUserConfig as aE, type __ΩTsupUserConfig as aF, type __ΩFarmUserConfig as aG, type __ΩInferUserConfig as aH, type __ΩInitialUserConfig as aI, type __ΩParsedUserConfig as aJ, type __ΩPowerlinesCommand as aK, type __ΩInlineConfig as aL, type __ΩNewInlineConfig as aM, type __ΩCleanInlineConfig as aN, type __ΩPrepareInlineConfig as aO, type __ΩBuildInlineConfig as aP, type __ΩLintInlineConfig as aQ, type __ΩDocsInlineConfig as aR, type __ΩDeployInlineConfig as aS, type __ΩConfigEnv as aT, type __ΩAnyUserConfig as aU, type __ΩUserConfigFnObject as aV, type __ΩUserConfigFnPromise as aW, type __ΩUserConfigFn as aX, type __ΩUserConfigExport as aY, LogLevel as aZ, type WorkerProcess as a_, type LintInlineConfig as aa, type DocsInlineConfig as ab, type DeployInlineConfig as ac, type ConfigEnv as ad, type AnyUserConfig as ae, type UserConfigFnObject as af, type UserConfigFnPromise as ag, type UserConfigFn as ah, type UserConfigExport as ai, type __ΩLogFn as aj, type __ΩWorkspaceConfig as ak, type __ΩPluginFactory as al, type __ΩPluginConfigTuple as am, type __ΩPluginConfigObject as an, type __ΩPluginConfig as ao, type __ΩPartialPlugin as ap, type __ΩPartialPluginFactory as aq, type __ΩProjectType as ar, type __ΩBabelUserConfig as as, type __ΩOutputConfig as at, type __ΩBaseConfig as au, type __ΩEnvironmentConfig as av, type __ΩCommonUserConfig as aw, type __ΩUserConfig as ax, type __ΩWebpackUserConfig as ay, type __ΩRspackUserConfig as az, type BabelTransformPlugin as b, type BasePluginHookFunctions as b$, type Resolver as b0, type TransformResult as b1, type SourceFile as b2, type UnimportContext as b3, type SelectHooksOptions as b4, type InitContextOptions as b5, type UnresolvedContext as b6, type Context as b7, type APIContext as b8, type EnvironmentContextPlugin as b9, type HookKeys as bA, type BaseHooksListItem as bB, type BaseHooksList as bC, type ExternalHooksListItem as bD, type HooksList as bE, type InferHookHandler as bF, type InferHookReturnType as bG, type InferHookParameters as bH, type InferHookThisType as bI, type __ΩBaseHooks as bJ, type __ΩBaseHookKeys as bK, type __ΩExternalHooks as bL, type __ΩExternalHookKeys as bM, type __ΩHooks as bN, type __ΩHookKeys as bO, type __ΩBaseHooksListItem as bP, type __ΩBaseHooksList as bQ, type __ΩExternalHooksListItem as bR, type __ΩHooksList as bS, type __ΩInferHookHandler as bT, type __ΩInferHookReturnType as bU, type __ΩInferHookParameters as bV, type __ΩInferHookThisType as bW, type PluginHookObject as bX, type PluginHook as bY, type GenerateTypesResult as bZ, type ConfigResult as b_, type EnvironmentContext as ba, type PluginContext as bb, type BuildPluginContext as bc, type SerializedVirtualFileSystem as bd, type __ΩLogLevel as be, type __ΩWorkerProcess as bf, type __ΩMetaInfo as bg, type __ΩResolver as bh, type __ΩTransformResult as bi, type __ΩSourceFile as bj, type __ΩUnimportContext as bk, type __ΩSelectHooksOptions as bl, type __ΩInitContextOptions as bm, type __ΩUnresolvedContext as bn, type __ΩContext as bo, type __ΩAPIContext as bp, type __ΩEnvironmentContextPlugin as bq, type __ΩEnvironmentContext as br, type __ΩPluginContext as bs, type __ΩBuildPluginContext as bt, type __ΩSerializedVirtualFileSystem as bu, type BaseHooks as bv, type BaseHookKeys as bw, type ExternalHooks as bx, type ExternalHookKeys as by, type Hooks as bz, type BabelTransformPluginOptions as c, type BuildPlugin as c0, type ExternalPluginHookFunctionsVariant as c1, type ExternalPluginHookFunctions as c2, type PluginHookFunctions as c3, type PluginHooks as c4, type PluginBuildPlugins as c5, type Plugin as c6, PLUGIN_NON_HOOK_FIELDS as c7, type PluginNonHookFields as c8, type __ΩPluginHookObject as c9, type FarmResolvedConfig as cA, type InferResolvedConfig as cB, type __ΩResolvedEntryTypeDefinition as cC, type __ΩBabelResolvedConfig as cD, type __ΩEnvironmentResolvedConfig as cE, type __ΩResolvedAssetGlob as cF, type __ΩOutputResolvedConfig as cG, type __ΩResolvedConfig as cH, type __ΩViteResolvedConfig as cI, type __ΩWebpackResolvedConfig as cJ, type __ΩRspackResolvedConfig as cK, type __ΩESBuildResolvedConfig as cL, type __ΩRollupResolvedConfig as cM, type __ΩRolldownResolvedConfig as cN, type __ΩTsupResolvedConfig as cO, type __ΩUnbuildResolvedConfig as cP, type __ΩFarmResolvedConfig as cQ, type __ΩInferResolvedConfig as cR, type __ΩPluginHook as ca, type __ΩGenerateTypesResult as cb, type __ΩConfigResult as cc, type __ΩBasePluginHookFunctions as cd, type __ΩBuildPlugin as ce, type __ΩExternalPluginHookFunctionsVariant as cf, type __ΩExternalPluginHookFunctions as cg, type __ΩPluginHookFunctions as ch, type __ΩPluginHooks as ci, type __ΩPluginBuildPlugins as cj, type __ΩPlugin as ck, type __ΩPluginNonHookFields as cl, type ResolvedEntryTypeDefinition as cm, type BabelResolvedConfig as cn, type EnvironmentResolvedConfig as co, type ResolvedAssetGlob as cp, type OutputResolvedConfig as cq, type ResolvedConfig as cr, type ViteResolvedConfig as cs, type WebpackResolvedConfig as ct, type RspackResolvedConfig as cu, type ESBuildResolvedConfig as cv, type RollupResolvedConfig as cw, type RolldownResolvedConfig as cx, type TsupResolvedConfig as cy, type UnbuildResolvedConfig as cz, type BabelTransformInput as d, type BabelTransformPluginBuilderParams as e, type BabelTransformPluginBuilder as f, type DeclareBabelTransformPluginReturn as g, type ImportSpecifier as h, type __ΩDefaultImportDefinition as i, type __ΩImportDefinition as j, type __ΩBabelPluginPass as k, type __ΩBabelTransformPluginFilter as l, type __ΩBabelTransformPlugin as m, type __ΩBabelTransformPluginOptions as n, type __ΩResolvedBabelTransformPluginOptions as o, type __ΩBabelTransformInput as p, type __ΩBabelTransformPluginBuilderParams as q, type __ΩBabelTransformPluginBuilder as r, type __ΩDeclareBabelTransformPluginReturn as s, type __ΩImportSpecifier as t, type Commands as u, type __ΩCommandType as v, type __ΩCommands as w, type PluginConfigTuple as x, type PluginConfigObject as y, type PluginConfig as z };
|
package/dist/rolldown.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as rolldown$1 from 'rolldown';
|
|
2
|
-
import {
|
|
2
|
+
import { V as RolldownUserConfig } from './resolved-Dem-rX6I.cjs';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
package/dist/rolldown.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as rolldown$1 from 'rolldown';
|
|
2
|
-
import {
|
|
2
|
+
import { V as RolldownUserConfig } from './resolved-BVakEeek.js';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
package/dist/rollup.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as rollup$1 from 'rollup';
|
|
2
|
-
import {
|
|
2
|
+
import { T as RollupUserConfig } from './resolved-Dem-rX6I.cjs';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
package/dist/rollup.d.ts
CHANGED
package/dist/rspack.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as unplugin from 'unplugin';
|
|
2
|
-
import {
|
|
2
|
+
import { Q as RspackUserConfig } from './resolved-Dem-rX6I.cjs';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
package/dist/rspack.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as unplugin from 'unplugin';
|
|
2
|
-
import {
|
|
2
|
+
import { Q as RspackUserConfig } from './resolved-BVakEeek.js';
|
|
3
3
|
import '@stryke/types/base';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
package/dist/types/babel.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@babel/core';
|
|
2
2
|
import '@babel/helper-plugin-utils';
|
|
3
|
-
export { B as BabelPluginPass, d as BabelTransformInput, b as BabelTransformPlugin, f as BabelTransformPluginBuilder, e as BabelTransformPluginBuilderParams, a as BabelTransformPluginFilter, c as BabelTransformPluginOptions, g as DeclareBabelTransformPluginReturn, D as DefaultImportDefinition, I as ImportDefinition, h as ImportSpecifier, N as NamedImportDefinition, R as ResolvedBabelTransformPluginOptions } from '../resolved-
|
|
3
|
+
export { B as BabelPluginPass, d as BabelTransformInput, b as BabelTransformPlugin, f as BabelTransformPluginBuilder, e as BabelTransformPluginBuilderParams, a as BabelTransformPluginFilter, c as BabelTransformPluginOptions, g as DeclareBabelTransformPluginReturn, D as DefaultImportDefinition, I as ImportDefinition, h as ImportSpecifier, N as NamedImportDefinition, R as ResolvedBabelTransformPluginOptions, k as __ΩBabelPluginPass, p as __ΩBabelTransformInput, m as __ΩBabelTransformPlugin, r as __ΩBabelTransformPluginBuilder, q as __ΩBabelTransformPluginBuilderParams, l as __ΩBabelTransformPluginFilter, n as __ΩBabelTransformPluginOptions, s as __ΩDeclareBabelTransformPluginReturn, i as __ΩDefaultImportDefinition, j as __ΩImportDefinition, t as __ΩImportSpecifier, _ as __ΩNamedImportDefinition, o as __ΩResolvedBabelTransformPluginOptions } from '../resolved-Dem-rX6I.cjs';
|
|
4
4
|
import '@stryke/types/base';
|
|
5
5
|
import '@stryke/types/configuration';
|
|
6
6
|
import '@stryke/types/file';
|
package/dist/types/babel.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@babel/core';
|
|
2
2
|
import '@babel/helper-plugin-utils';
|
|
3
|
-
export { B as BabelPluginPass, d as BabelTransformInput, b as BabelTransformPlugin, f as BabelTransformPluginBuilder, e as BabelTransformPluginBuilderParams, a as BabelTransformPluginFilter, c as BabelTransformPluginOptions, g as DeclareBabelTransformPluginReturn, D as DefaultImportDefinition, I as ImportDefinition, h as ImportSpecifier, N as NamedImportDefinition, R as ResolvedBabelTransformPluginOptions } from '../resolved-
|
|
3
|
+
export { B as BabelPluginPass, d as BabelTransformInput, b as BabelTransformPlugin, f as BabelTransformPluginBuilder, e as BabelTransformPluginBuilderParams, a as BabelTransformPluginFilter, c as BabelTransformPluginOptions, g as DeclareBabelTransformPluginReturn, D as DefaultImportDefinition, I as ImportDefinition, h as ImportSpecifier, N as NamedImportDefinition, R as ResolvedBabelTransformPluginOptions, k as __ΩBabelPluginPass, p as __ΩBabelTransformInput, m as __ΩBabelTransformPlugin, r as __ΩBabelTransformPluginBuilder, q as __ΩBabelTransformPluginBuilderParams, l as __ΩBabelTransformPluginFilter, n as __ΩBabelTransformPluginOptions, s as __ΩDeclareBabelTransformPluginReturn, i as __ΩDefaultImportDefinition, j as __ΩImportDefinition, t as __ΩImportSpecifier, _ as __ΩNamedImportDefinition, o as __ΩResolvedBabelTransformPluginOptions } from '../resolved-BVakEeek.js';
|
|
4
4
|
import '@stryke/types/base';
|
|
5
5
|
import '@stryke/types/configuration';
|
|
6
6
|
import '@stryke/types/file';
|
package/dist/types/build.d.cts
CHANGED
|
@@ -169,5 +169,30 @@ type UnbuildBuildConfig = Partial<Omit<UnbuildOptions, "tsconfig" | "tsconfigRaw
|
|
|
169
169
|
type UnbuildResolvedBuildConfig = UnbuildOptions & BuildResolvedConfig;
|
|
170
170
|
type FarmBuildConfig = Partial<Omit<UserConfig$1, "tsconfig" | "tsconfigRaw" | "assets" | "outputPath" | "mode" | "format" | "platform" | "projectRoot" | "env" | "entry" | "entryPoints">> & BuildConfig;
|
|
171
171
|
type FarmResolvedBuildConfig = UserConfig$1 & BuildResolvedConfig;
|
|
172
|
+
declare type __ΩUnpluginBuildVariant = any[];
|
|
173
|
+
declare type __ΩBuildVariant = any[];
|
|
174
|
+
declare type __ΩInferUnpluginVariant = any[];
|
|
175
|
+
declare type __ΩBuildConfig = any[];
|
|
176
|
+
declare type __ΩBuildResolvedConfig = any[];
|
|
177
|
+
declare type __ΩESBuildBuildConfig = any[];
|
|
178
|
+
declare type __ΩESBuildResolvedBuildConfig = any[];
|
|
179
|
+
declare type __ΩViteBuildConfig = any[];
|
|
180
|
+
declare type __ΩViteResolvedBuildConfig = any[];
|
|
181
|
+
declare type __ΩWebpackBuildConfig = any[];
|
|
182
|
+
declare type __ΩWebpackResolvedBuildConfig = any[];
|
|
183
|
+
declare type __ΩRspackBuildConfig = any[];
|
|
184
|
+
declare type __ΩRspackResolvedBuildConfig = any[];
|
|
185
|
+
declare type __ΩRollupBuildOutputConfig = any[];
|
|
186
|
+
declare type __ΩRollupBuildConfig = any[];
|
|
187
|
+
declare type __ΩRollupResolvedBuildConfig = any[];
|
|
188
|
+
declare type __ΩRolldownBuildOutputConfig = any[];
|
|
189
|
+
declare type __ΩRolldownBuildConfig = any[];
|
|
190
|
+
declare type __ΩRolldownResolvedBuildConfig = any[];
|
|
191
|
+
declare type __ΩTsupBuildConfig = any[];
|
|
192
|
+
declare type __ΩTsupResolvedBuildConfig = any[];
|
|
193
|
+
declare type __ΩUnbuildBuildConfig = any[];
|
|
194
|
+
declare type __ΩUnbuildResolvedBuildConfig = any[];
|
|
195
|
+
declare type __ΩFarmBuildConfig = any[];
|
|
196
|
+
declare type __ΩFarmResolvedBuildConfig = any[];
|
|
172
197
|
|
|
173
|
-
export type { BuildConfig, BuildResolvedConfig, BuildVariant, ESBuildBuildConfig, ESBuildResolvedBuildConfig, FarmBuildConfig, FarmResolvedBuildConfig, InferUnpluginVariant, RolldownBuildConfig, RolldownBuildOutputConfig, RolldownResolvedBuildConfig, RollupBuildConfig, RollupBuildOutputConfig, RollupResolvedBuildConfig, RspackBuildConfig, RspackResolvedBuildConfig, TsupBuildConfig, TsupResolvedBuildConfig, UnbuildBuildConfig, UnbuildResolvedBuildConfig, UnpluginBuildVariant, ViteBuildConfig, ViteResolvedBuildConfig, WebpackBuildConfig, WebpackResolvedBuildConfig };
|
|
198
|
+
export type { BuildConfig, BuildResolvedConfig, BuildVariant, ESBuildBuildConfig, ESBuildResolvedBuildConfig, FarmBuildConfig, FarmResolvedBuildConfig, InferUnpluginVariant, RolldownBuildConfig, RolldownBuildOutputConfig, RolldownResolvedBuildConfig, RollupBuildConfig, RollupBuildOutputConfig, RollupResolvedBuildConfig, RspackBuildConfig, RspackResolvedBuildConfig, TsupBuildConfig, TsupResolvedBuildConfig, UnbuildBuildConfig, UnbuildResolvedBuildConfig, UnpluginBuildVariant, ViteBuildConfig, ViteResolvedBuildConfig, WebpackBuildConfig, WebpackResolvedBuildConfig, __ΩBuildConfig, __ΩBuildResolvedConfig, __ΩBuildVariant, __ΩESBuildBuildConfig, __ΩESBuildResolvedBuildConfig, __ΩFarmBuildConfig, __ΩFarmResolvedBuildConfig, __ΩInferUnpluginVariant, __ΩRolldownBuildConfig, __ΩRolldownBuildOutputConfig, __ΩRolldownResolvedBuildConfig, __ΩRollupBuildConfig, __ΩRollupBuildOutputConfig, __ΩRollupResolvedBuildConfig, __ΩRspackBuildConfig, __ΩRspackResolvedBuildConfig, __ΩTsupBuildConfig, __ΩTsupResolvedBuildConfig, __ΩUnbuildBuildConfig, __ΩUnbuildResolvedBuildConfig, __ΩUnpluginBuildVariant, __ΩViteBuildConfig, __ΩViteResolvedBuildConfig, __ΩWebpackBuildConfig, __ΩWebpackResolvedBuildConfig };
|
package/dist/types/build.d.ts
CHANGED
|
@@ -169,5 +169,30 @@ type UnbuildBuildConfig = Partial<Omit<UnbuildOptions, "tsconfig" | "tsconfigRaw
|
|
|
169
169
|
type UnbuildResolvedBuildConfig = UnbuildOptions & BuildResolvedConfig;
|
|
170
170
|
type FarmBuildConfig = Partial<Omit<UserConfig$1, "tsconfig" | "tsconfigRaw" | "assets" | "outputPath" | "mode" | "format" | "platform" | "projectRoot" | "env" | "entry" | "entryPoints">> & BuildConfig;
|
|
171
171
|
type FarmResolvedBuildConfig = UserConfig$1 & BuildResolvedConfig;
|
|
172
|
+
declare type __ΩUnpluginBuildVariant = any[];
|
|
173
|
+
declare type __ΩBuildVariant = any[];
|
|
174
|
+
declare type __ΩInferUnpluginVariant = any[];
|
|
175
|
+
declare type __ΩBuildConfig = any[];
|
|
176
|
+
declare type __ΩBuildResolvedConfig = any[];
|
|
177
|
+
declare type __ΩESBuildBuildConfig = any[];
|
|
178
|
+
declare type __ΩESBuildResolvedBuildConfig = any[];
|
|
179
|
+
declare type __ΩViteBuildConfig = any[];
|
|
180
|
+
declare type __ΩViteResolvedBuildConfig = any[];
|
|
181
|
+
declare type __ΩWebpackBuildConfig = any[];
|
|
182
|
+
declare type __ΩWebpackResolvedBuildConfig = any[];
|
|
183
|
+
declare type __ΩRspackBuildConfig = any[];
|
|
184
|
+
declare type __ΩRspackResolvedBuildConfig = any[];
|
|
185
|
+
declare type __ΩRollupBuildOutputConfig = any[];
|
|
186
|
+
declare type __ΩRollupBuildConfig = any[];
|
|
187
|
+
declare type __ΩRollupResolvedBuildConfig = any[];
|
|
188
|
+
declare type __ΩRolldownBuildOutputConfig = any[];
|
|
189
|
+
declare type __ΩRolldownBuildConfig = any[];
|
|
190
|
+
declare type __ΩRolldownResolvedBuildConfig = any[];
|
|
191
|
+
declare type __ΩTsupBuildConfig = any[];
|
|
192
|
+
declare type __ΩTsupResolvedBuildConfig = any[];
|
|
193
|
+
declare type __ΩUnbuildBuildConfig = any[];
|
|
194
|
+
declare type __ΩUnbuildResolvedBuildConfig = any[];
|
|
195
|
+
declare type __ΩFarmBuildConfig = any[];
|
|
196
|
+
declare type __ΩFarmResolvedBuildConfig = any[];
|
|
172
197
|
|
|
173
|
-
export type { BuildConfig, BuildResolvedConfig, BuildVariant, ESBuildBuildConfig, ESBuildResolvedBuildConfig, FarmBuildConfig, FarmResolvedBuildConfig, InferUnpluginVariant, RolldownBuildConfig, RolldownBuildOutputConfig, RolldownResolvedBuildConfig, RollupBuildConfig, RollupBuildOutputConfig, RollupResolvedBuildConfig, RspackBuildConfig, RspackResolvedBuildConfig, TsupBuildConfig, TsupResolvedBuildConfig, UnbuildBuildConfig, UnbuildResolvedBuildConfig, UnpluginBuildVariant, ViteBuildConfig, ViteResolvedBuildConfig, WebpackBuildConfig, WebpackResolvedBuildConfig };
|
|
198
|
+
export type { BuildConfig, BuildResolvedConfig, BuildVariant, ESBuildBuildConfig, ESBuildResolvedBuildConfig, FarmBuildConfig, FarmResolvedBuildConfig, InferUnpluginVariant, RolldownBuildConfig, RolldownBuildOutputConfig, RolldownResolvedBuildConfig, RollupBuildConfig, RollupBuildOutputConfig, RollupResolvedBuildConfig, RspackBuildConfig, RspackResolvedBuildConfig, TsupBuildConfig, TsupResolvedBuildConfig, UnbuildBuildConfig, UnbuildResolvedBuildConfig, UnpluginBuildVariant, ViteBuildConfig, ViteResolvedBuildConfig, WebpackBuildConfig, WebpackResolvedBuildConfig, __ΩBuildConfig, __ΩBuildResolvedConfig, __ΩBuildVariant, __ΩESBuildBuildConfig, __ΩESBuildResolvedBuildConfig, __ΩFarmBuildConfig, __ΩFarmResolvedBuildConfig, __ΩInferUnpluginVariant, __ΩRolldownBuildConfig, __ΩRolldownBuildOutputConfig, __ΩRolldownResolvedBuildConfig, __ΩRollupBuildConfig, __ΩRollupBuildOutputConfig, __ΩRollupResolvedBuildConfig, __ΩRspackBuildConfig, __ΩRspackResolvedBuildConfig, __ΩTsupBuildConfig, __ΩTsupResolvedBuildConfig, __ΩUnbuildBuildConfig, __ΩUnbuildResolvedBuildConfig, __ΩUnpluginBuildVariant, __ΩViteBuildConfig, __ΩViteResolvedBuildConfig, __ΩWebpackBuildConfig, __ΩWebpackResolvedBuildConfig };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@stryke/types/array';
|
|
2
2
|
import '@stryke/types/base';
|
|
3
|
-
export { C as CommandType,
|
|
3
|
+
export { C as CommandType, u as Commands, S as SUPPORTED_COMMANDS, v as __ΩCommandType, w as __ΩCommands } from '../resolved-Dem-rX6I.cjs';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
|
6
6
|
import 'vite';
|
package/dist/types/commands.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@stryke/types/array';
|
|
2
2
|
import '@stryke/types/base';
|
|
3
|
-
export { C as CommandType,
|
|
3
|
+
export { C as CommandType, u as Commands, S as SUPPORTED_COMMANDS, v as __ΩCommandType, w as __ΩCommands } from '../resolved-BVakEeek.js';
|
|
4
4
|
import '@stryke/types/configuration';
|
|
5
5
|
import '@stryke/types/file';
|
|
6
6
|
import 'vite';
|
package/dist/types/config.d.cts
CHANGED
|
@@ -7,7 +7,7 @@ import '@stryke/types/configuration';
|
|
|
7
7
|
import '@stryke/types/file';
|
|
8
8
|
import 'c12';
|
|
9
9
|
import 'vite';
|
|
10
|
-
export {
|
|
10
|
+
export { ae as AnyUserConfig, G as BabelUserConfig, H as BaseConfig, a9 as BuildInlineConfig, a7 as CleanInlineConfig, K as CommonUserConfig, ad as ConfigEnv, ac as DeployInlineConfig, ab as DocsInlineConfig, Y as ESBuildUserConfig, J as EnvironmentConfig, a0 as FarmUserConfig, a1 as InferUserConfig, a2 as InitialUserConfig, a5 as InlineConfig, aa as LintInlineConfig, L as LogFn, a6 as NewInlineConfig, O as OutputConfig, a3 as ParsedUserConfig, A as PartialPlugin, E as PartialPluginFactory, z as PluginConfig, y as PluginConfigObject, x as PluginConfigTuple, P as PluginFactory, a4 as PowerlinesCommand, a8 as PrepareInlineConfig, F as ProjectType, V as RolldownUserConfig, T as RollupUserConfig, Q as RspackUserConfig, $ as TsupUserConfig, Z as UnbuildUserConfig, U as UserConfig, ai as UserConfigExport, ah as UserConfigFn, af as UserConfigFnObject, ag as UserConfigFnPromise, X as ViteUserConfig, M as WebpackUserConfig, W as WorkspaceConfig, aU as __ΩAnyUserConfig, as as __ΩBabelUserConfig, au as __ΩBaseConfig, aP as __ΩBuildInlineConfig, aN as __ΩCleanInlineConfig, aw as __ΩCommonUserConfig, aT as __ΩConfigEnv, aS as __ΩDeployInlineConfig, aR as __ΩDocsInlineConfig, aD as __ΩESBuildUserConfig, av as __ΩEnvironmentConfig, aG as __ΩFarmUserConfig, aH as __ΩInferUserConfig, aI as __ΩInitialUserConfig, aL as __ΩInlineConfig, aQ as __ΩLintInlineConfig, aj as __ΩLogFn, aM as __ΩNewInlineConfig, at as __ΩOutputConfig, aJ as __ΩParsedUserConfig, ap as __ΩPartialPlugin, aq as __ΩPartialPluginFactory, ao as __ΩPluginConfig, an as __ΩPluginConfigObject, am as __ΩPluginConfigTuple, al as __ΩPluginFactory, aK as __ΩPowerlinesCommand, aO as __ΩPrepareInlineConfig, ar as __ΩProjectType, aB as __ΩRolldownUserConfig, aA as __ΩRollupUserConfig, az as __ΩRspackUserConfig, aF as __ΩTsupUserConfig, aE as __ΩUnbuildUserConfig, ax as __ΩUserConfig, aY as __ΩUserConfigExport, aX as __ΩUserConfigFn, aV as __ΩUserConfigFnObject, aW as __ΩUserConfigFnPromise, aC as __ΩViteUserConfig, ay as __ΩWebpackUserConfig, ak as __ΩWorkspaceConfig } from '../resolved-Dem-rX6I.cjs';
|
|
11
11
|
import './build.cjs';
|
|
12
12
|
import './tsconfig.cjs';
|
|
13
13
|
import './vfs.cjs';
|
package/dist/types/config.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import '@stryke/types/configuration';
|
|
|
7
7
|
import '@stryke/types/file';
|
|
8
8
|
import 'c12';
|
|
9
9
|
import 'vite';
|
|
10
|
-
export {
|
|
10
|
+
export { ae as AnyUserConfig, G as BabelUserConfig, H as BaseConfig, a9 as BuildInlineConfig, a7 as CleanInlineConfig, K as CommonUserConfig, ad as ConfigEnv, ac as DeployInlineConfig, ab as DocsInlineConfig, Y as ESBuildUserConfig, J as EnvironmentConfig, a0 as FarmUserConfig, a1 as InferUserConfig, a2 as InitialUserConfig, a5 as InlineConfig, aa as LintInlineConfig, L as LogFn, a6 as NewInlineConfig, O as OutputConfig, a3 as ParsedUserConfig, A as PartialPlugin, E as PartialPluginFactory, z as PluginConfig, y as PluginConfigObject, x as PluginConfigTuple, P as PluginFactory, a4 as PowerlinesCommand, a8 as PrepareInlineConfig, F as ProjectType, V as RolldownUserConfig, T as RollupUserConfig, Q as RspackUserConfig, $ as TsupUserConfig, Z as UnbuildUserConfig, U as UserConfig, ai as UserConfigExport, ah as UserConfigFn, af as UserConfigFnObject, ag as UserConfigFnPromise, X as ViteUserConfig, M as WebpackUserConfig, W as WorkspaceConfig, aU as __ΩAnyUserConfig, as as __ΩBabelUserConfig, au as __ΩBaseConfig, aP as __ΩBuildInlineConfig, aN as __ΩCleanInlineConfig, aw as __ΩCommonUserConfig, aT as __ΩConfigEnv, aS as __ΩDeployInlineConfig, aR as __ΩDocsInlineConfig, aD as __ΩESBuildUserConfig, av as __ΩEnvironmentConfig, aG as __ΩFarmUserConfig, aH as __ΩInferUserConfig, aI as __ΩInitialUserConfig, aL as __ΩInlineConfig, aQ as __ΩLintInlineConfig, aj as __ΩLogFn, aM as __ΩNewInlineConfig, at as __ΩOutputConfig, aJ as __ΩParsedUserConfig, ap as __ΩPartialPlugin, aq as __ΩPartialPluginFactory, ao as __ΩPluginConfig, an as __ΩPluginConfigObject, am as __ΩPluginConfigTuple, al as __ΩPluginFactory, aK as __ΩPowerlinesCommand, aO as __ΩPrepareInlineConfig, ar as __ΩProjectType, aB as __ΩRolldownUserConfig, aA as __ΩRollupUserConfig, az as __ΩRspackUserConfig, aF as __ΩTsupUserConfig, aE as __ΩUnbuildUserConfig, ax as __ΩUserConfig, aY as __ΩUserConfigExport, aX as __ΩUserConfigFn, aV as __ΩUserConfigFnObject, aW as __ΩUserConfigFnPromise, aC as __ΩViteUserConfig, ay as __ΩWebpackUserConfig, ak as __ΩWorkspaceConfig } from '../resolved-BVakEeek.js';
|
|
11
11
|
import './build.js';
|
|
12
12
|
import './tsconfig.js';
|
|
13
13
|
import './vfs.js';
|
package/dist/types/context.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ import 'oxc-parser';
|
|
|
9
9
|
import 'semver';
|
|
10
10
|
import 'unimport';
|
|
11
11
|
import 'unplugin';
|
|
12
|
-
export {
|
|
12
|
+
export { b8 as APIContext, bc as BuildPluginContext, b7 as Context, ba as EnvironmentContext, b9 as EnvironmentContextPlugin, b5 as InitContextOptions, aZ as LogLevel, a$ as MetaInfo, bb as PluginContext, b0 as Resolver, b4 as SelectHooksOptions, bd as SerializedVirtualFileSystem, b2 as SourceFile, b1 as TransformResult, b3 as UnimportContext, b6 as UnresolvedContext, a_ as WorkerProcess, bp as __ΩAPIContext, bt as __ΩBuildPluginContext, bo as __ΩContext, br as __ΩEnvironmentContext, bq as __ΩEnvironmentContextPlugin, bm as __ΩInitContextOptions, be as __ΩLogLevel, bg as __ΩMetaInfo, bs as __ΩPluginContext, bh as __ΩResolver, bl as __ΩSelectHooksOptions, bu as __ΩSerializedVirtualFileSystem, bj as __ΩSourceFile, bi as __ΩTransformResult, bk as __ΩUnimportContext, bn as __ΩUnresolvedContext, bf as __ΩWorkerProcess } from '../resolved-Dem-rX6I.cjs';
|
|
13
13
|
import './tsconfig.cjs';
|
|
14
14
|
import './vfs.cjs';
|
|
15
15
|
import '@stryke/types/configuration';
|
package/dist/types/context.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import 'oxc-parser';
|
|
|
9
9
|
import 'semver';
|
|
10
10
|
import 'unimport';
|
|
11
11
|
import 'unplugin';
|
|
12
|
-
export {
|
|
12
|
+
export { b8 as APIContext, bc as BuildPluginContext, b7 as Context, ba as EnvironmentContext, b9 as EnvironmentContextPlugin, b5 as InitContextOptions, aZ as LogLevel, a$ as MetaInfo, bb as PluginContext, b0 as Resolver, b4 as SelectHooksOptions, bd as SerializedVirtualFileSystem, b2 as SourceFile, b1 as TransformResult, b3 as UnimportContext, b6 as UnresolvedContext, a_ as WorkerProcess, bp as __ΩAPIContext, bt as __ΩBuildPluginContext, bo as __ΩContext, br as __ΩEnvironmentContext, bq as __ΩEnvironmentContextPlugin, bm as __ΩInitContextOptions, be as __ΩLogLevel, bg as __ΩMetaInfo, bs as __ΩPluginContext, bh as __ΩResolver, bl as __ΩSelectHooksOptions, bu as __ΩSerializedVirtualFileSystem, bj as __ΩSourceFile, bi as __ΩTransformResult, bk as __ΩUnimportContext, bn as __ΩUnresolvedContext, bf as __ΩWorkerProcess } from '../resolved-BVakEeek.js';
|
|
13
13
|
import './tsconfig.js';
|
|
14
14
|
import './vfs.js';
|
|
15
15
|
import '@stryke/types/configuration';
|
package/dist/types/hooks.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { bw as BaseHookKeys, bv as BaseHooks, bC as BaseHooksList, bB as BaseHooksListItem, by as ExternalHookKeys, bx as ExternalHooks, bD as ExternalHooksListItem, bA as HookKeys, bz as Hooks, bE as HooksList, bF as InferHookHandler, bH as InferHookParameters, bG as InferHookReturnType, bI as InferHookThisType, bK as __ΩBaseHookKeys, bJ as __ΩBaseHooks, bQ as __ΩBaseHooksList, bP as __ΩBaseHooksListItem, bM as __ΩExternalHookKeys, bL as __ΩExternalHooks, bR as __ΩExternalHooksListItem, bO as __ΩHookKeys, bN as __ΩHooks, bS as __ΩHooksList, bT as __ΩInferHookHandler, bV as __ΩInferHookParameters, bU as __ΩInferHookReturnType, bW as __ΩInferHookThisType } from '../resolved-Dem-rX6I.cjs';
|
|
2
2
|
import '@stryke/types/base';
|
|
3
3
|
import '@stryke/types/configuration';
|
|
4
4
|
import '@stryke/types/file';
|
package/dist/types/hooks.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { bw as BaseHookKeys, bv as BaseHooks, bC as BaseHooksList, bB as BaseHooksListItem, by as ExternalHookKeys, bx as ExternalHooks, bD as ExternalHooksListItem, bA as HookKeys, bz as Hooks, bE as HooksList, bF as InferHookHandler, bH as InferHookParameters, bG as InferHookReturnType, bI as InferHookThisType, bK as __ΩBaseHookKeys, bJ as __ΩBaseHooks, bQ as __ΩBaseHooksList, bP as __ΩBaseHooksListItem, bM as __ΩExternalHookKeys, bL as __ΩExternalHooks, bR as __ΩExternalHooksListItem, bO as __ΩHookKeys, bN as __ΩHooks, bS as __ΩHooksList, bT as __ΩInferHookHandler, bV as __ΩInferHookParameters, bU as __ΩInferHookReturnType, bW as __ΩInferHookThisType } from '../resolved-BVakEeek.js';
|
|
2
2
|
import '@stryke/types/base';
|
|
3
3
|
import '@stryke/types/configuration';
|
|
4
4
|
import '@stryke/types/file';
|