@powerlines/core 0.45.2 → 0.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/constants/virtual-modules.cjs +4 -2
  2. package/dist/constants/virtual-modules.d.cts +1 -1
  3. package/dist/constants/virtual-modules.d.cts.map +1 -1
  4. package/dist/constants/virtual-modules.d.mts +1 -1
  5. package/dist/constants/virtual-modules.d.mts.map +1 -1
  6. package/dist/constants/virtual-modules.mjs +4 -2
  7. package/dist/constants/virtual-modules.mjs.map +1 -1
  8. package/dist/index.d.cts +5 -5
  9. package/dist/index.d.mts +5 -5
  10. package/dist/lib/config.d.cts +2 -1
  11. package/dist/lib/config.d.cts.map +1 -1
  12. package/dist/lib/config.d.mts +2 -1
  13. package/dist/lib/config.d.mts.map +1 -1
  14. package/dist/lib/config.mjs.map +1 -1
  15. package/dist/lib/unplugin/module-resolution.cjs +10 -10
  16. package/dist/lib/unplugin/module-resolution.mjs +10 -10
  17. package/dist/lib/unplugin/module-resolution.mjs.map +1 -1
  18. package/dist/lib/unplugin/plugin.cjs +6 -6
  19. package/dist/lib/unplugin/plugin.mjs +6 -6
  20. package/dist/lib/unplugin/plugin.mjs.map +1 -1
  21. package/dist/plugin-utils/helpers.d.cts +10 -9
  22. package/dist/plugin-utils/helpers.d.cts.map +1 -1
  23. package/dist/plugin-utils/helpers.d.mts +10 -9
  24. package/dist/plugin-utils/helpers.d.mts.map +1 -1
  25. package/dist/plugin-utils/paths.cjs +6 -2
  26. package/dist/plugin-utils/paths.mjs +6 -2
  27. package/dist/plugin-utils/paths.mjs.map +1 -1
  28. package/dist/types/_internal.d.cts +3 -18
  29. package/dist/types/_internal.d.cts.map +1 -1
  30. package/dist/types/_internal.d.mts +3 -18
  31. package/dist/types/_internal.d.mts.map +1 -1
  32. package/dist/types/api.d.cts +4 -3
  33. package/dist/types/api.d.cts.map +1 -1
  34. package/dist/types/api.d.mts +4 -3
  35. package/dist/types/api.d.mts.map +1 -1
  36. package/dist/types/config.d.cts +103 -70
  37. package/dist/types/config.d.cts.map +1 -1
  38. package/dist/types/config.d.mts +103 -70
  39. package/dist/types/config.d.mts.map +1 -1
  40. package/dist/types/context.d.cts +57 -68
  41. package/dist/types/context.d.cts.map +1 -1
  42. package/dist/types/context.d.mts +57 -68
  43. package/dist/types/context.d.mts.map +1 -1
  44. package/dist/types/index.d.cts +4 -4
  45. package/dist/types/index.d.mts +4 -4
  46. package/dist/types/plugin.d.cts +3 -6
  47. package/dist/types/plugin.d.cts.map +1 -1
  48. package/dist/types/plugin.d.mts +3 -6
  49. package/dist/types/plugin.d.mts.map +1 -1
  50. package/dist/types/unplugin.d.cts +9 -9
  51. package/dist/types/unplugin.d.cts.map +1 -1
  52. package/dist/types/unplugin.d.mts +9 -9
  53. package/dist/types/unplugin.d.mts.map +1 -1
  54. package/package.json +14 -13
@@ -1,11 +1,11 @@
1
- import { StoragePort, StoragePreset } from "./fs.cjs";
2
1
  import { Plugin } from "./plugin.cjs";
2
+ import { StoragePort, StoragePreset } from "./fs.cjs";
3
3
  import { CustomLogger, LogLevelResolvedConfig, LogLevelUserConfig } from "./logging.cjs";
4
4
  import { TSConfig } from "./tsconfig.cjs";
5
5
  import { PluginContext } from "./context.cjs";
6
+ import { DeepPartial, MaybePromise, NonUndefined, RequiredKeys } from "@stryke/types/base";
6
7
  import { Format } from "@storm-software/build-tools/types";
7
8
  import { StormWorkspaceConfig } from "@storm-software/config/types";
8
- import { DeepPartial, MaybePromise, NonUndefined, RequiredKeys } from "@stryke/types/base";
9
9
  import { TypeDefinition, TypeDefinitionParameter } from "@stryke/types/configuration";
10
10
  import { AssetGlob } from "@stryke/types/file";
11
11
  import { ConfigLayer, ResolvedConfig } from "c12";
@@ -233,7 +233,7 @@ interface OutputConfig {
233
233
  */
234
234
  storage?: StoragePort | StoragePreset;
235
235
  }
236
- interface EngineInputOptions {
236
+ interface Options {
237
237
  /**
238
238
  * The name of the project
239
239
  */
@@ -242,13 +242,6 @@ interface EngineInputOptions {
242
242
  * The root directory of the project
243
243
  */
244
244
  root?: string;
245
- /**
246
- * The current working directory the Powerlines processes should operate in
247
- *
248
- * @remarks
249
- * If not provided, the {@link WorkspaceConfig.workspaceRoot | workspace root} will be used as the current working directory. If the workspace root cannot be determined, the process's current working directory will be used.
250
- */
251
- cwd?: string;
252
245
  /**
253
246
  * Explicitly set a mode to run in. This mode will be used at various points throughout the Powerlines processes, such as when compiling the source code.
254
247
  *
@@ -272,6 +265,15 @@ interface EngineInputOptions {
272
265
  * The organization or author of the project
273
266
  */
274
267
  organization?: string;
268
+ }
269
+ interface EngineOptions extends Options {
270
+ /**
271
+ * The current working directory the Powerlines processes should operate in
272
+ *
273
+ * @remarks
274
+ * If not provided, the {@link WorkspaceConfig.workspaceRoot | workspace root} will be used as the current working directory. If the workspace root cannot be determined, the process's current working directory will be used.
275
+ */
276
+ cwd?: string;
275
277
  /**
276
278
  * A path to a custom configuration file to be used instead of the default `powerlines.json`, `powerlines.config.js`, or `powerlines.config.ts` files.
277
279
  *
@@ -280,7 +282,6 @@ interface EngineInputOptions {
280
282
  */
281
283
  configFile?: string;
282
284
  }
283
- type EngineOptions = RequiredKeys<EngineInputOptions, "root" | "framework">;
284
285
  interface ExecutionOptions extends RequiredKeys<EngineOptions, "cwd"> {
285
286
  /**
286
287
  * A unique identifier for the current execution instance, which can be used for logging and other purposes to distinguish between different executions in the same process.
@@ -300,6 +301,17 @@ interface Config {
300
301
  * Configuration for the output files generated by processing the source code
301
302
  */
302
303
  output?: OutputConfig;
304
+ /**
305
+ * The date to use for compatibility checks
306
+ *
307
+ * @remarks
308
+ * This date can be used by plugins and build processes to determine compatibility with certain features or APIs. It is recommended to set this date to the date when the project was last known to be compatible with the desired features or APIs. If no value is provided, the latest compatibility date will be used.
309
+ *
310
+ * @see https://developers.cloudflare.com/pages/platform/compatibility-dates/
311
+ * @see https://docs.netlify.com/configure-builds/get-started/#set-a-compatibility-date
312
+ * @see https://github.com/unjs/compatx
313
+ */
314
+ compatibilityDate?: CompatibilityDateSpec;
303
315
  /**
304
316
  * Configuration for module resolution during processing of the source code
305
317
  */
@@ -378,6 +390,13 @@ interface EnvironmentConfig extends Config {
378
390
  * A flag indicating whether the build is for a Server-Side Rendering environment.
379
391
  */
380
392
  ssr?: boolean;
393
+ /**
394
+ * The runtime environment for the build, which can be used by plugins to determine how to process the source code and generate runtime artifacts.
395
+ *
396
+ * @remarks
397
+ * This option can be used to specify the target runtime environment for the build, such as "nodejs", "browser", "workerd", or "edge". Plugins can use this information to determine how to process the source code and generate runtime artifacts that are compatible with the specified environment. If no value is provided, plugins will need to determine the runtime environment based on other factors, such as the presence of certain dependencies or configuration options.
398
+ */
399
+ runtime?: "nodejs" | "browser" | "workerd" | "edge";
381
400
  /**
382
401
  * Define if this environment is used for Server-Side Rendering
383
402
  *
@@ -385,7 +404,7 @@ interface EnvironmentConfig extends Config {
385
404
  */
386
405
  consumer?: "client" | "server";
387
406
  }
388
- interface UserConfig extends Config, ExecutionOptions {
407
+ interface UserConfig extends Options, Config {
389
408
  /**
390
409
  * The name of the project
391
410
  */
@@ -411,17 +430,6 @@ interface UserConfig extends Config, ExecutionOptions {
411
430
  * If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
412
431
  */
413
432
  organization?: string;
414
- /**
415
- * The date to use for compatibility checks
416
- *
417
- * @remarks
418
- * This date can be used by plugins and build processes to determine compatibility with certain features or APIs. It is recommended to set this date to the date when the project was last known to be compatible with the desired features or APIs. If no value is provided, the latest compatibility date will be used.
419
- *
420
- * @see https://developers.cloudflare.com/pages/platform/compatibility-dates/
421
- * @see https://docs.netlify.com/configure-builds/get-started/#set-a-compatibility-date
422
- * @see https://github.com/unjs/compatx
423
- */
424
- compatibilityDate?: CompatibilityDateSpec;
425
433
  /**
426
434
  * The log level label indicating the severity of the log message, or a more detailed log level configuration object that allows for specifying different log levels for different categories of logs.
427
435
  *
@@ -481,14 +489,7 @@ interface UserConfig extends Config, ExecutionOptions {
481
489
  singleBuild?: boolean;
482
490
  }
483
491
  type PowerlinesCommand = "new" | "types" | "prepare" | "build" | "lint" | "test" | "docs" | "deploy" | "clean";
484
- /**
485
- * The configuration provided when initializing the Powerlines API.
486
- *
487
- * @remarks
488
- * This configuration is used during the initialization of the Powerlines API.
489
- */
490
- type InitialConfig<TUserConfig extends UserConfig = UserConfig> = DeepPartial<TUserConfig>;
491
- type InitialPluginConfig<TUserConfig extends UserConfig = UserConfig> = InitialConfig<TUserConfig> & EngineOptions;
492
+ type InitialPluginConfig<TUserConfig extends UserConfig = UserConfig> = DeepPartial<TUserConfig> & EngineOptions;
492
493
  /**
493
494
  * The configuration provided while executing Powerlines commands.
494
495
  */
@@ -560,7 +561,7 @@ type DeployInlineConfig<TUserConfig extends UserConfig = UserConfig> = InlineCon
560
561
  */
561
562
  command: "deploy";
562
563
  };
563
- type UserConfigFn<TUserConfig extends UserConfig = UserConfig> = (params: EngineOptions) => MaybePromise<TUserConfig>;
564
+ type UserConfigFn<TUserConfig extends UserConfig = UserConfig> = (params: Options) => MaybePromise<TUserConfig>;
564
565
  type AnyOutputUserConfig = Partial<Omit<OutputConfig, "copy">> & {
565
566
  /**
566
567
  * The output configuration options to use for the build process
@@ -602,13 +603,13 @@ interface ResolvedEntryTypeDefinition extends TypeDefinition {
602
603
  */
603
604
  output?: string;
604
605
  }
605
- type EnvironmentResolvedConfig = Omit<EnvironmentConfig, "consumer" | "ssr" | "preview"> & Required<Pick<EnvironmentConfig, "consumer" | "ssr">> & {
606
+ type ResolvedEnvironmentConfig = RequiredKeys<Omit<EnvironmentConfig, "preview">, "consumer" | "ssr"> & {
606
607
  /**
607
- * A unique identifier for the environment, which can be used for logging and other purposes to distinguish between different environments in the same process.
608
+ * A string identifier for the environment used by the system and plugins to determine which environment-specific configuration to use during the build process.
608
609
  */
609
- environmentId: string;
610
+ id: string;
610
611
  /**
611
- * The name of the environment
612
+ * The name of the environment provided by the user in the {@link UserConfig.environments | environments} configuration.
612
613
  */
613
614
  name: string;
614
615
  /**
@@ -619,7 +620,7 @@ type EnvironmentResolvedConfig = Omit<EnvironmentConfig, "consumer" | "ssr" | "p
619
620
  /**
620
621
  * The configuration options for resolving modules in a Powerlines project.
621
622
  */
622
- type ResolveResolvedConfig = Required<Omit<ResolveConfig, "external" | "noExternal">> & {
623
+ type ResolvedResolveConfig = Required<Omit<ResolveConfig, "external" | "noExternal">> & {
623
624
  /**
624
625
  * A list of modules that should not be bundled, even if they are external dependencies.
625
626
  *
@@ -633,58 +634,72 @@ type ResolveResolvedConfig = Required<Omit<ResolveConfig, "external" | "noExtern
633
634
  noExternal?: string[];
634
635
  };
635
636
  type ResolvedAssetGlob = AssetGlob & Required<Pick<AssetGlob, "input">>;
636
- type CopyResolvedConfig = Required<Omit<CopyConfig, "assets">> & {
637
+ type ResolvedCopyConfig = Required<Omit<CopyConfig, "assets">> & {
637
638
  assets: ResolvedAssetGlob[];
638
639
  };
639
- type OutputResolvedConfig = Required<Omit<OutputConfig, "copy" | "storage">> & Pick<OutputConfig, "storage"> & {
640
- copy: CopyResolvedConfig | false;
640
+ type ResolvedOutputConfig = Required<Omit<OutputConfig, "copy" | "storage">> & Pick<OutputConfig, "storage"> & {
641
+ copy: ResolvedCopyConfig | false;
641
642
  };
642
643
  /**
643
- * The resolved options for the Powerlines project configuration.
644
+ * The base resolved configuration options for a Powerlines project, after being processed and normalized by the configuration loading process.
644
645
  */
645
- type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "root" | "cwd" | "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "platform" | "projectType" | "input" | "output" | "resolve" | "logLevel" | "framework"> & Required<Pick<TUserConfig, "root" | "cwd" | "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "input" | "tsconfig" | "platform" | "projectType" | "framework">> & {
646
+ type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "root" | "cwd" | "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "platform" | "projectType" | "input" | "output" | "resolve" | "logLevel" | "framework"> & Required<Pick<TUserConfig, "root" | "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "input" | "tsconfig" | "platform" | "projectType" | "framework">> & {
646
647
  /**
647
- * The output configuration options to use for the build process
648
+ * The configuration provided when initializing the Powerlines API.
649
+ *
650
+ * @remarks
651
+ * This configuration is used during the initialization of the Powerlines API.
648
652
  */
649
- output: OutputResolvedConfig;
653
+ readonly initialConfig: DeepPartial<TUserConfig>;
650
654
  /**
651
- * Configuration for module resolution during processing of the source code
655
+ * The configuration options read from a configuration file on disk, which may be used to resolve the final configuration for the context. This typically includes the user configuration options defined in the `powerlines.config.ts` file, as well as any inline configuration options provided during execution.
652
656
  */
653
- resolve: ResolveResolvedConfig;
657
+ readonly userConfig: TUserConfig;
654
658
  /**
655
- * The date to use for compatibility checks
659
+ * The configuration options that were provided by Powerlines plugins, which may have been merged with the user configuration and modified by the configuration loading process.
660
+ */
661
+ readonly pluginConfig: DeepPartial<TUserConfig>;
662
+ /**
663
+ * The configuration options provided by plugins added by the user (and other plugins)
664
+ */
665
+ readonly inlineConfig: InlineConfig<TUserConfig>;
666
+ /**
667
+ * The current working directory the Powerlines processes should operate in
656
668
  *
657
669
  * @remarks
658
- * This date can be used by plugins and build processes to determine compatibility with certain features or APIs. It is recommended to set this date to the date when the project was last known to be compatible with the desired features or APIs.
659
- *
660
- * @see https://developers.cloudflare.com/pages/platform/compatibility-dates/
661
- * @see https://docs.netlify.com/configure-builds/get-started/#set-a-compatibility-date
662
- * @see https://github.com/unjs/compatx
670
+ * If not provided, the {@link WorkspaceConfig.workspaceRoot | workspace root} will be used as the current working directory. If the workspace root cannot be determined, the process's current working directory will be used.
663
671
  */
664
- compatibilityDate: CompatibilityDates;
672
+ readonly cwd: string;
665
673
  /**
666
- * The configuration provided when initializing the Powerlines API.
674
+ * A path to a custom configuration file to be used instead of the default `powerlines.json`, `powerlines.config.js`, or `powerlines.config.ts` files.
667
675
  *
668
676
  * @remarks
669
- * This configuration is used during the initialization of the Powerlines API.
677
+ * This option is useful for running Powerlines commands with different configuration files, such as in CI/CD environments or when testing different configurations.
670
678
  */
671
- initialConfig: InitialConfig<TUserConfig>;
679
+ readonly configFile: string;
672
680
  /**
673
- * The configuration options that were provided inline to the Powerlines CLI.
681
+ * The output configuration options to use for the build process
674
682
  */
675
- inlineConfig: InlineConfig<TUserConfig>;
683
+ output: ResolvedOutputConfig;
676
684
  /**
677
- * The original configuration options that were provided by the user to the Powerlines process.
685
+ * Configuration for module resolution during processing of the source code
678
686
  */
679
- userConfig: TUserConfig;
687
+ resolve: ResolvedResolveConfig;
680
688
  /**
681
- * The configuration options that were provided by Powerlines plugins, which may have been merged with the user configuration and modified by the configuration loading process.
689
+ * The date to use for compatibility checks
690
+ *
691
+ * @remarks
692
+ * This date can be used by plugins and build processes to determine compatibility with certain features or APIs. It is recommended to set this date to the date when the project was last known to be compatible with the desired features or APIs.
693
+ *
694
+ * @see https://developers.cloudflare.com/pages/platform/compatibility-dates/
695
+ * @see https://docs.netlify.com/configure-builds/get-started/#set-a-compatibility-date
696
+ * @see https://github.com/unjs/compatx
682
697
  */
683
- pluginConfig: Partial<TUserConfig>;
698
+ compatibilityDate: CompatibilityDates;
684
699
  /**
685
700
  * A string identifier for the Powerlines command being executed.
686
701
  */
687
- command: NonUndefined<InlineConfig<TUserConfig>["command"]>;
702
+ readonly command: NonUndefined<InlineConfig<TUserConfig>["command"]>;
688
703
  /**
689
704
  * The log level label indicating the severity of the log message, or a more detailed log level configuration object that allows for specifying different log levels for different categories of logs.
690
705
  *
@@ -693,6 +708,23 @@ type ResolvedConfig$1<TUserConfig extends UserConfig = UserConfig> = Omit<TUserC
693
708
  */
694
709
  logLevel: LogLevelResolvedConfig;
695
710
  };
711
+ type InferOverridableConfig<TResolvedConfig extends ResolvedConfig$1 = ResolvedConfig$1> = DeepPartial<Omit<TResolvedConfig, "initialConfig" | "userConfig" | "pluginConfig" | "inlineConfig" | "cwd" | "configFile" | "command">>;
712
+ /**
713
+ * The resolved configuration options for a Powerlines environment, after being processed and normalized by the configuration loading process.
714
+ */
715
+ type EnvironmentResolvedConfig<TResolvedConfig extends ResolvedConfig$1 = ResolvedConfig$1> = TResolvedConfig & {
716
+ /**
717
+ * The configuration provided when initializing the Powerlines API.
718
+ *
719
+ * @remarks
720
+ * This configuration is used during the initialization of the Powerlines API.
721
+ */
722
+ readonly environmentConfig: EnvironmentConfig;
723
+ /**
724
+ * The resolved configuration options for the environment, which may include additional properties or modifications made during the configuration loading process.
725
+ */
726
+ environment: ResolvedEnvironmentConfig;
727
+ };
696
728
  declare type __ΩWorkspaceConfig = any[];
697
729
  declare type __ΩPluginFactory = any[];
698
730
  declare type __ΩPluginConfigTuple = any[];
@@ -705,14 +737,13 @@ declare type __ΩMode = any[];
705
737
  declare type __ΩResolveConfig = any[];
706
738
  declare type __ΩCopyConfig = any[];
707
739
  declare type __ΩOutputConfig = any[];
708
- declare type __ΩEngineInputOptions = any[];
740
+ declare type __ΩOptions = any[];
709
741
  declare type __ΩEngineOptions = any[];
710
742
  declare type __ΩExecutionOptions = any[];
711
743
  declare type __ΩConfig = any[];
712
744
  declare type __ΩEnvironmentConfig = any[];
713
745
  declare type __ΩUserConfig = any[];
714
746
  declare type __ΩPowerlinesCommand = any[];
715
- declare type __ΩInitialConfig = any[];
716
747
  declare type __ΩInitialPluginConfig = any[];
717
748
  declare type __ΩInlineConfig = any[];
718
749
  declare type __ΩNewInlineConfig = any[];
@@ -729,12 +760,14 @@ declare type __ΩAnyOutputUserConfig = any[];
729
760
  declare type __ΩAnyUserConfig = any[];
730
761
  declare type __ΩParsedUserConfig = any[];
731
762
  declare type __ΩResolvedEntryTypeDefinition = any[];
732
- declare type __ΩEnvironmentResolvedConfig = any[];
733
- declare type __ΩResolveResolvedConfig = any[];
763
+ declare type __ΩResolvedEnvironmentConfig = any[];
764
+ declare type __ΩResolvedResolveConfig = any[];
734
765
  declare type __ΩResolvedAssetGlob = any[];
735
- declare type __ΩCopyResolvedConfig = any[];
736
- declare type __ΩOutputResolvedConfig = any[];
766
+ declare type __ΩResolvedCopyConfig = any[];
767
+ declare type __ΩResolvedOutputConfig = any[];
737
768
  declare type __ΩResolvedConfig = any[];
769
+ declare type __ΩInferOverridableConfig = any[];
770
+ declare type __ΩEnvironmentResolvedConfig = any[];
738
771
  //#endregion
739
- export { AnyOutputUserConfig, AnyUserConfig, BuildInlineConfig, CleanInlineConfig, Config, CopyConfig, CopyResolvedConfig, DeployInlineConfig, DocsInlineConfig, EngineInputOptions, EngineOptions, EnvironmentConfig, EnvironmentResolvedConfig, ExecutionOptions, InitialConfig, InitialPluginConfig, InlineConfig, LintInlineConfig, Mode, NewInlineConfig, OutputConfig, OutputResolvedConfig, ParsedUserConfig, PartialPlugin, PartialPluginFactory, PluginConfig, PluginConfigObject, PluginConfigTuple, PluginFactory, PowerlinesCommand, PrepareInlineConfig, ProjectType, ResolveConfig, ResolveResolvedConfig, ResolvedAssetGlob, ResolvedConfig$1 as ResolvedConfig, ResolvedEntryTypeDefinition, TestInlineConfig, TypesInlineConfig, UserConfig, UserConfigFn, WorkspaceConfig, __ΩAnyOutputUserConfig, __ΩAnyUserConfig, __ΩBuildInlineConfig, __ΩCleanInlineConfig, __ΩConfig, __ΩCopyConfig, __ΩCopyResolvedConfig, __ΩDeployInlineConfig, __ΩDocsInlineConfig, __ΩEngineInputOptions, __ΩEngineOptions, __ΩEnvironmentConfig, __ΩEnvironmentResolvedConfig, __ΩExecutionOptions, __ΩInitialConfig, __ΩInitialPluginConfig, __ΩInlineConfig, __ΩLintInlineConfig, __ΩMode, __ΩNewInlineConfig, __ΩOutputConfig, __ΩOutputResolvedConfig, __ΩParsedUserConfig, __ΩPartialPlugin, __ΩPartialPluginFactory, __ΩPluginConfig, __ΩPluginConfigObject, __ΩPluginConfigTuple, __ΩPluginFactory, __ΩPowerlinesCommand, __ΩPrepareInlineConfig, __ΩProjectType, __ΩResolveConfig, __ΩResolveResolvedConfig, __ΩResolvedAssetGlob, __ΩResolvedConfig, __ΩResolvedEntryTypeDefinition, __ΩTestInlineConfig, __ΩTypesInlineConfig, __ΩUserConfig, __ΩUserConfigFn, __ΩWorkspaceConfig };
772
+ export { AnyOutputUserConfig, AnyUserConfig, BuildInlineConfig, CleanInlineConfig, Config, CopyConfig, DeployInlineConfig, DocsInlineConfig, EngineOptions, EnvironmentConfig, EnvironmentResolvedConfig, ExecutionOptions, InferOverridableConfig, InitialPluginConfig, InlineConfig, LintInlineConfig, Mode, NewInlineConfig, Options, OutputConfig, ParsedUserConfig, PartialPlugin, PartialPluginFactory, PluginConfig, PluginConfigObject, PluginConfigTuple, PluginFactory, PowerlinesCommand, PrepareInlineConfig, ProjectType, ResolveConfig, ResolvedAssetGlob, ResolvedConfig$1 as ResolvedConfig, ResolvedCopyConfig, ResolvedEntryTypeDefinition, ResolvedEnvironmentConfig, ResolvedOutputConfig, ResolvedResolveConfig, TestInlineConfig, TypesInlineConfig, UserConfig, UserConfigFn, WorkspaceConfig, __ΩAnyOutputUserConfig, __ΩAnyUserConfig, __ΩBuildInlineConfig, __ΩCleanInlineConfig, __ΩConfig, __ΩCopyConfig, __ΩDeployInlineConfig, __ΩDocsInlineConfig, __ΩEngineOptions, __ΩEnvironmentConfig, __ΩEnvironmentResolvedConfig, __ΩExecutionOptions, __ΩInferOverridableConfig, __ΩInitialPluginConfig, __ΩInlineConfig, __ΩLintInlineConfig, __ΩMode, __ΩNewInlineConfig, __ΩOptions, __ΩOutputConfig, __ΩParsedUserConfig, __ΩPartialPlugin, __ΩPartialPluginFactory, __ΩPluginConfig, __ΩPluginConfigObject, __ΩPluginConfigTuple, __ΩPluginFactory, __ΩPowerlinesCommand, __ΩPrepareInlineConfig, __ΩProjectType, __ΩResolveConfig, __ΩResolvedAssetGlob, __ΩResolvedConfig, __ΩResolvedCopyConfig, __ΩResolvedEntryTypeDefinition, __ΩResolvedEnvironmentConfig, __ΩResolvedOutputConfig, __ΩResolvedResolveConfig, __ΩTestInlineConfig, __ΩTypesInlineConfig, __ΩUserConfig, __ΩUserConfigFn, __ΩWorkspaceConfig };
740
773
  //# sourceMappingURL=config.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.cts","names":[],"sources":["../../src/types/config.ts"],"mappings":"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"}
1
+ {"version":3,"file":"config.d.cts","names":[],"sources":["../../src/types/config.ts"],"mappings":"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"}