@powerlines/plugin-nodejs 0.1.0 → 0.1.2

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 (200) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +29 -0
  2. package/dist/components/env.cjs +188 -2
  3. package/dist/components/env.d.cts +9 -2
  4. package/dist/components/env.d.mts +9 -2
  5. package/dist/components/env.mjs +185 -1
  6. package/dist/components/index.cjs +2 -3
  7. package/dist/components/index.d.cts +1 -3
  8. package/dist/components/index.d.mts +1 -3
  9. package/dist/components/index.mjs +1 -2
  10. package/dist/deepkit/schemas/reflection.cjs +3940 -0
  11. package/dist/{plugin-D7kBf19k.d.cts → deepkit/schemas/reflection.d.cts} +1 -1078
  12. package/dist/{plugin-JL1BtFku.d.mts → deepkit/schemas/reflection.d.mts} +59 -1136
  13. package/dist/deepkit/schemas/reflection.mjs +3938 -0
  14. package/dist/deepkit/schemas/reflection2.cjs +4112 -0
  15. package/dist/deepkit/schemas/reflection2.mjs +4110 -0
  16. package/dist/deepkit/src/capnp.cjs +913 -0
  17. package/dist/deepkit/src/capnp.mjs +911 -0
  18. package/dist/deepkit/src/esbuild-plugin.cjs +47 -0
  19. package/dist/deepkit/src/esbuild-plugin.mjs +46 -0
  20. package/dist/deepkit/src/reflect-type.cjs +22 -0
  21. package/dist/deepkit/src/reflect-type.mjs +20 -0
  22. package/dist/deepkit/src/resolve-reflections.cjs +16 -0
  23. package/dist/deepkit/src/resolve-reflections.mjs +15 -0
  24. package/dist/deepkit/src/transformer.cjs +52 -0
  25. package/dist/deepkit/src/transformer.mjs +49 -0
  26. package/dist/deepkit/src/transpile.cjs +29 -0
  27. package/dist/deepkit/src/transpile.mjs +27 -0
  28. package/dist/deepkit/src/types.d.cts +10 -0
  29. package/dist/deepkit/src/types.d.mts +10 -0
  30. package/dist/deepkit/src/utilities.cjs +66 -0
  31. package/dist/deepkit/src/utilities.mjs +65 -0
  32. package/dist/index.cjs +14 -813
  33. package/dist/index.d.cts +5 -5
  34. package/dist/index.d.mts +5 -5
  35. package/dist/index.mjs +11 -803
  36. package/dist/plugin-alloy/src/core/components/output.cjs +45 -0
  37. package/dist/plugin-alloy/src/core/components/output.mjs +44 -0
  38. package/dist/plugin-alloy/src/core/components/single-line-comment.cjs +22 -0
  39. package/dist/plugin-alloy/src/core/components/single-line-comment.mjs +21 -0
  40. package/dist/plugin-alloy/src/core/components/source-file.cjs +64 -0
  41. package/dist/plugin-alloy/src/core/components/source-file.d.cts +23 -0
  42. package/dist/plugin-alloy/src/core/components/source-file.d.mts +23 -0
  43. package/dist/plugin-alloy/src/core/components/source-file.mjs +62 -0
  44. package/dist/plugin-alloy/src/core/contexts/context.cjs +60 -0
  45. package/dist/plugin-alloy/src/core/contexts/context.mjs +54 -0
  46. package/dist/plugin-alloy/src/core/contexts/index.cjs +2 -0
  47. package/dist/plugin-alloy/src/core/contexts/index.mjs +4 -0
  48. package/dist/plugin-alloy/src/core/contexts/reflection.cjs +46 -0
  49. package/dist/plugin-alloy/src/core/contexts/reflection.mjs +42 -0
  50. package/dist/plugin-alloy/src/helpers/refkey.cjs +16 -0
  51. package/dist/plugin-alloy/src/helpers/refkey.mjs +15 -0
  52. package/dist/plugin-alloy/src/index.cjs +99 -0
  53. package/dist/plugin-alloy/src/index.mjs +97 -0
  54. package/dist/plugin-alloy/src/markdown/components/markdown-file.cjs +7 -0
  55. package/dist/plugin-alloy/src/markdown/components/markdown-file.mjs +9 -0
  56. package/dist/plugin-alloy/src/markdown/components/markdown-table.cjs +5 -0
  57. package/dist/plugin-alloy/src/markdown/components/markdown-table.mjs +7 -0
  58. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.cjs +17 -0
  59. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.mjs +17 -0
  60. package/dist/plugin-alloy/src/types/components.d.cts +23 -0
  61. package/dist/plugin-alloy/src/types/components.d.mts +24 -0
  62. package/dist/plugin-alloy/src/types/index.d.cts +2 -0
  63. package/dist/plugin-alloy/src/types/index.d.mts +2 -0
  64. package/dist/plugin-alloy/src/types/plugin.d.cts +37 -0
  65. package/dist/plugin-alloy/src/types/plugin.d.mts +37 -0
  66. package/dist/plugin-alloy/src/typescript/components/builtin-file.cjs +57 -0
  67. package/dist/plugin-alloy/src/typescript/components/builtin-file.d.cts +26 -0
  68. package/dist/plugin-alloy/src/typescript/components/builtin-file.d.mts +26 -0
  69. package/dist/plugin-alloy/src/typescript/components/builtin-file.mjs +56 -0
  70. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.cjs +126 -0
  71. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.mjs +124 -0
  72. package/dist/plugin-alloy/src/typescript/components/tsdoc.cjs +442 -0
  73. package/dist/plugin-alloy/src/typescript/components/tsdoc.d.cts +28 -0
  74. package/dist/plugin-alloy/src/typescript/components/tsdoc.d.mts +28 -0
  75. package/dist/plugin-alloy/src/typescript/components/tsdoc.mjs +433 -0
  76. package/dist/plugin-alloy/src/typescript/components/typescript-file.cjs +194 -0
  77. package/dist/plugin-alloy/src/typescript/components/typescript-file.d.cts +15 -0
  78. package/dist/plugin-alloy/src/typescript/components/typescript-file.d.mts +15 -0
  79. package/dist/plugin-alloy/src/typescript/components/typescript-file.mjs +191 -0
  80. package/dist/plugin-alloy/src/typescript/components/typescript-interface.cjs +68 -0
  81. package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.cts +4 -0
  82. package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.mts +4 -0
  83. package/dist/plugin-alloy/src/typescript/components/typescript-interface.mjs +67 -0
  84. package/dist/plugin-alloy/src/typescript/components/typescript-object.cjs +124 -0
  85. package/dist/plugin-alloy/src/typescript/components/typescript-object.mjs +123 -0
  86. package/dist/plugin-automd/src/index.cjs +101 -0
  87. package/dist/plugin-automd/src/index.mjs +98 -0
  88. package/dist/plugin-automd/src/types/plugin.d.cts +38 -0
  89. package/dist/plugin-automd/src/types/plugin.d.mts +40 -0
  90. package/dist/plugin-automd/src/types/toc.d.cts +33 -0
  91. package/dist/plugin-automd/src/types/toc.d.mts +33 -0
  92. package/dist/plugin-babel/src/helpers/ast-utils.cjs +10 -0
  93. package/dist/plugin-babel/src/helpers/ast-utils.mjs +9 -0
  94. package/dist/plugin-babel/src/helpers/create-plugin.cjs +41 -0
  95. package/dist/plugin-babel/src/helpers/create-plugin.mjs +39 -0
  96. package/dist/plugin-babel/src/helpers/filters.cjs +23 -0
  97. package/dist/plugin-babel/src/helpers/filters.mjs +21 -0
  98. package/dist/plugin-babel/src/helpers/index.cjs +5 -0
  99. package/dist/plugin-babel/src/helpers/index.mjs +7 -0
  100. package/dist/plugin-babel/src/helpers/module-helpers.cjs +38 -0
  101. package/dist/plugin-babel/src/helpers/module-helpers.mjs +35 -0
  102. package/dist/plugin-babel/src/helpers/options.cjs +50 -0
  103. package/dist/plugin-babel/src/helpers/options.mjs +47 -0
  104. package/dist/plugin-babel/src/index.cjs +91 -0
  105. package/dist/plugin-babel/src/index.mjs +89 -0
  106. package/dist/plugin-babel/src/types/index.d.mts +1 -0
  107. package/dist/plugin-babel/src/types/plugin.d.cts +15 -0
  108. package/dist/plugin-babel/src/types/plugin.d.mts +15 -0
  109. package/dist/plugin-env/src/babel/index.cjs +1 -0
  110. package/dist/plugin-env/src/babel/index.mjs +3 -0
  111. package/dist/plugin-env/src/babel/plugin.cjs +121 -0
  112. package/dist/plugin-env/src/babel/plugin.mjs +119 -0
  113. package/dist/plugin-env/src/components/docs.cjs +9 -0
  114. package/dist/plugin-env/src/components/docs.mjs +11 -0
  115. package/dist/plugin-env/src/components/env.cjs +575 -0
  116. package/dist/plugin-env/src/components/env.d.cts +11 -0
  117. package/dist/plugin-env/src/components/env.d.mts +11 -0
  118. package/dist/plugin-env/src/components/env.mjs +572 -0
  119. package/dist/plugin-env/src/components/index.cjs +2 -0
  120. package/dist/plugin-env/src/components/index.mjs +4 -0
  121. package/dist/plugin-env/src/helpers/automd-generator.cjs +22 -0
  122. package/dist/plugin-env/src/helpers/automd-generator.mjs +21 -0
  123. package/dist/plugin-env/src/helpers/create-reflection-resource.cjs +55 -0
  124. package/dist/plugin-env/src/helpers/create-reflection-resource.mjs +54 -0
  125. package/dist/plugin-env/src/helpers/index.cjs +6 -0
  126. package/dist/plugin-env/src/helpers/index.mjs +8 -0
  127. package/dist/plugin-env/src/helpers/load.cjs +83 -0
  128. package/dist/plugin-env/src/helpers/load.mjs +80 -0
  129. package/dist/plugin-env/src/helpers/persistence.cjs +199 -0
  130. package/dist/plugin-env/src/helpers/persistence.mjs +188 -0
  131. package/dist/plugin-env/src/helpers/reflect.cjs +111 -0
  132. package/dist/plugin-env/src/helpers/reflect.mjs +103 -0
  133. package/dist/plugin-env/src/helpers/source-file-env.cjs +24 -0
  134. package/dist/plugin-env/src/helpers/source-file-env.mjs +23 -0
  135. package/dist/plugin-env/src/helpers/template-helpers.cjs +2 -0
  136. package/dist/plugin-env/src/helpers/template-helpers.mjs +4 -0
  137. package/dist/plugin-env/src/index.cjs +175 -0
  138. package/dist/plugin-env/src/index.mjs +173 -0
  139. package/dist/plugin-env/src/types/plugin.d.cts +152 -0
  140. package/dist/plugin-env/src/types/plugin.d.mts +153 -0
  141. package/dist/plugin-env/src/types/runtime.d.cts +792 -0
  142. package/dist/plugin-env/src/types/runtime.d.mts +792 -0
  143. package/dist/powerlines/src/lib/build/esbuild.cjs +102 -0
  144. package/dist/powerlines/src/lib/build/esbuild.mjs +100 -0
  145. package/dist/powerlines/src/lib/entry.cjs +12 -0
  146. package/dist/powerlines/src/lib/entry.mjs +14 -0
  147. package/dist/powerlines/src/lib/logger.cjs +41 -0
  148. package/dist/powerlines/src/lib/logger.mjs +39 -0
  149. package/dist/powerlines/src/lib/typescript/tsconfig.cjs +38 -0
  150. package/dist/powerlines/src/lib/typescript/tsconfig.mjs +35 -0
  151. package/dist/powerlines/src/lib/utilities/bundle.cjs +35 -0
  152. package/dist/powerlines/src/lib/utilities/bundle.mjs +34 -0
  153. package/dist/powerlines/src/lib/utilities/resolve.cjs +30 -0
  154. package/dist/powerlines/src/lib/utilities/resolve.mjs +29 -0
  155. package/dist/powerlines/src/plugin-utils/paths.cjs +1 -0
  156. package/dist/powerlines/src/plugin-utils/paths.mjs +3 -0
  157. package/dist/powerlines/src/types/babel.d.cts +22 -0
  158. package/dist/powerlines/src/types/babel.d.mts +22 -0
  159. package/dist/powerlines/src/types/build.d.cts +145 -0
  160. package/dist/powerlines/src/types/build.d.mts +145 -0
  161. package/dist/powerlines/src/types/commands.d.cts +8 -0
  162. package/dist/powerlines/src/types/commands.d.mts +9 -0
  163. package/dist/powerlines/src/types/config.d.cts +387 -0
  164. package/dist/powerlines/src/types/config.d.mts +388 -0
  165. package/dist/powerlines/src/types/context.d.cts +414 -0
  166. package/dist/powerlines/src/types/context.d.mts +416 -0
  167. package/dist/powerlines/src/types/fs.d.cts +486 -0
  168. package/dist/powerlines/src/types/fs.d.mts +486 -0
  169. package/dist/powerlines/src/types/hooks.d.mts +2 -0
  170. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  171. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  172. package/dist/powerlines/src/types/resolved.d.cts +82 -0
  173. package/dist/powerlines/src/types/resolved.d.mts +82 -0
  174. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  175. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  176. package/dist/types/index.cjs +0 -2
  177. package/dist/types/index.d.cts +1 -3
  178. package/dist/types/index.d.mts +1 -3
  179. package/dist/types/index.mjs +0 -3
  180. package/dist/types/plugin.cjs +0 -1
  181. package/dist/types/plugin.d.cts +22 -2
  182. package/dist/types/plugin.d.mts +22 -2
  183. package/dist/types/plugin.mjs +0 -2
  184. package/package.json +6 -6
  185. package/dist/components-BWLXb7a2.cjs +0 -0
  186. package/dist/components-CXZYcH4q.d.mts +0 -1816
  187. package/dist/components-kh0CpIG2.mjs +0 -1
  188. package/dist/env-CAhIy_H3.cjs +0 -11713
  189. package/dist/env-CUyFiniR.d.cts +0 -107
  190. package/dist/env-IF4XhMjG.mjs +0 -11570
  191. package/dist/env-sRb-Y8mJ.d.mts +0 -89
  192. package/dist/index-CUbWeWHc.d.mts +0 -1
  193. package/dist/index-D6CnpA_r.d.cts +0 -1
  194. package/dist/index-DL0uimUT.d.mts +0 -1
  195. package/dist/index-DWPDThxu.d.cts +0 -1
  196. package/dist/plugin-ifZVa20V.mjs +0 -1
  197. package/dist/plugin-pBKbb5K9.cjs +0 -0
  198. package/dist/resolved-zsx09G03.d.cts +0 -1795
  199. package/dist/types-U3zd8PTP.mjs +0 -1
  200. package/dist/types-o3zWarRp.cjs +0 -0
@@ -0,0 +1,388 @@
1
+ import { StoragePort, StoragePreset } from "./fs.mjs";
2
+ import { BuildConfig, BuildResolvedConfig } from "./build.mjs";
3
+ import { Plugin } from "./plugin.mjs";
4
+ import { TSConfig } from "./tsconfig.mjs";
5
+ import { PluginContext } from "./context.mjs";
6
+ import { BabelTransformPluginOptions } from "./babel.mjs";
7
+ import { transformAsync } from "@babel/core";
8
+ import { LogLevelLabel } from "@storm-software/config-tools/types";
9
+ import "c12";
10
+ import { MaybePromise } from "@stryke/types/base";
11
+ import { AssetGlob } from "@stryke/types/file";
12
+ import { TypeDefinitionParameter } from "@stryke/types/configuration";
13
+ import { PreviewOptions } from "vite";
14
+ import { Format } from "@storm-software/build-tools/types";
15
+ import { StormWorkspaceConfig } from "@storm-software/config/types";
16
+ import { DateString } from "compatx";
17
+
18
+ //#region ../powerlines/src/types/config.d.ts
19
+ type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
20
+ /**
21
+ * The {@link StormWorkspaceConfig | configuration} object for an entire Powerlines workspace
22
+ */
23
+ type WorkspaceConfig = Partial<StormWorkspaceConfig> & Required<Pick<StormWorkspaceConfig, "workspaceRoot">>;
24
+ type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext> | Plugin<TContext>[]>;
25
+ /**
26
+ * A configuration tuple for a Powerlines plugin.
27
+ */
28
+ type PluginConfigTuple<TContext extends PluginContext = PluginContext, TOptions = any> = [string | PluginFactory<TContext, TOptions>, TOptions] | [Plugin<TContext>];
29
+ /**
30
+ * A configuration object for a Powerlines plugin.
31
+ */
32
+ type PluginConfigObject<TContext extends PluginContext = PluginContext, TOptions = any> = {
33
+ plugin: string | PluginFactory<TContext, TOptions>;
34
+ options: TOptions;
35
+ } | {
36
+ plugin: Plugin<TContext>;
37
+ options?: never;
38
+ };
39
+ /**
40
+ * A configuration tuple for a Powerlines plugin.
41
+ */
42
+ type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | PluginConfigTuple<TContext> | PluginConfigObject<TContext> | Promise<PluginConfig<TContext>> | PluginConfig<TContext>[];
43
+ type ProjectType = "application" | "library";
44
+ type BabelUserConfig = Parameters<typeof transformAsync>[1] & {
45
+ /**
46
+ * The Babel plugins to be used during the build process
47
+ */
48
+ plugins?: BabelTransformPluginOptions[];
49
+ /**
50
+ * The Babel presets to be used during the build process
51
+ */
52
+ presets?: BabelTransformPluginOptions[];
53
+ };
54
+ interface DeployConfig {
55
+ /**
56
+ * The deployment variant being used by the Powerlines engine.
57
+ *
58
+ * @example
59
+ * ```ts
60
+ * export default defineConfig({
61
+ * deploy: {
62
+ * variant: "cloudflare"
63
+ * }
64
+ * });
65
+ *
66
+ * ```
67
+ */
68
+ variant?: string;
69
+ }
70
+ interface OutputConfig {
71
+ /**
72
+ * The path to output the final compiled files to
73
+ *
74
+ * @remarks
75
+ * If a value is not provided, Powerlines will attempt to:
76
+ * 1. Use the `outDir` value in the `tsconfig.json` file.
77
+ * 2. Use the `dist` directory in the project root directory.
78
+ *
79
+ * @defaultValue "dist/\{projectRoot\}"
80
+ */
81
+ outputPath?: string;
82
+ /**
83
+ * The output directory path for the project build.
84
+ *
85
+ * @remarks
86
+ * This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
87
+ *
88
+ * @defaultValue "\{projectRoot\}/dist"
89
+ */
90
+ buildPath?: string;
91
+ /**
92
+ * The folder where the generated runtime artifacts will be located
93
+ *
94
+ * @remarks
95
+ * This folder will contain all runtime artifacts and builtins generated during the "prepare" phase.
96
+ *
97
+ * @defaultValue "\{projectRoot\}/.powerlines"
98
+ */
99
+ artifactsPath?: string;
100
+ /**
101
+ * The path of the generated runtime declaration file relative to the workspace root.
102
+ *
103
+ * @defaultValue "\{projectRoot\}/powerlines.d.ts"
104
+ */
105
+ dts?: string | false;
106
+ /**
107
+ * A prefix to use for identifying builtin modules
108
+ *
109
+ * @remarks
110
+ * This prefix will be used to identify all builtin modules generated during the "prepare" phase. An example builtin ID for a module called `"utils"` would be `"{builtinPrefix}:utils"`.
111
+ *
112
+ * @defaultValue "powerlines"
113
+ */
114
+ builtinPrefix?: string;
115
+ /**
116
+ * The module format of the output files
117
+ *
118
+ * @remarks
119
+ * This option can be a single format or an array of formats. If an array is provided, multiple builds will be generated for each format.
120
+ *
121
+ * @defaultValue "esm"
122
+ */
123
+ format?: Format | Format[];
124
+ /**
125
+ * A list of assets to copy to the output directory
126
+ *
127
+ * @remarks
128
+ * The assets can be specified as a string (path to the asset) or as an object with a `glob` property (to match multiple files). The paths are relative to the project root directory.
129
+ */
130
+ assets?: Array<string | AssetGlob>;
131
+ /**
132
+ * A string preset or a custom {@link StoragePort} to provide fine-grained control over generated/output file storage.
133
+ *
134
+ * @remarks
135
+ * If a string preset is provided, it must be one of the following values:
136
+ * - `"virtual"`: Uses the local file system for storage.
137
+ * - `"fs"`: Uses an in-memory virtual file system for storage.
138
+ *
139
+ * If a custom {@link StoragePort} is provided, it will be used for all file storage operations during the build process.
140
+ *
141
+ * @defaultValue "virtual"
142
+ */
143
+ storage?: StoragePort | StoragePreset;
144
+ }
145
+ interface BaseConfig {
146
+ /**
147
+ * The entry point(s) for the application
148
+ */
149
+ entry?: TypeDefinitionParameter | TypeDefinitionParameter[];
150
+ /**
151
+ * Configuration for the output of the build process
152
+ */
153
+ output?: OutputConfig;
154
+ /**
155
+ * Configuration for cleaning the build artifacts
156
+ *
157
+ * @remarks
158
+ * If set to `false`, the cleaning process will be disabled.
159
+ */
160
+ clean?: Record<string, any> | false;
161
+ /**
162
+ * Configuration for linting the source code
163
+ *
164
+ * @remarks
165
+ * If set to `false`, linting will be disabled.
166
+ */
167
+ lint?: Record<string, any> | false;
168
+ /**
169
+ * Configuration for testing the source code
170
+ *
171
+ * @remarks
172
+ * If set to `false`, testing will be disabled.
173
+ */
174
+ test?: Record<string, any> | false;
175
+ /**
176
+ * Configuration for the transformation of the source code
177
+ */
178
+ transform?: Record<string, any>;
179
+ /**
180
+ * Configuration provided to build processes
181
+ *
182
+ * @remarks
183
+ * This configuration can be used by plugins during the `build` command. It will generally contain options specific to the selected {@link BuildVariant | build variant}.
184
+ */
185
+ build?: BuildConfig;
186
+ /**
187
+ * Configuration for documentation generation
188
+ *
189
+ * @remarks
190
+ * This configuration will be used by the documentation generation plugins during the `docs` command.
191
+ */
192
+ docs?: Record<string, any>;
193
+ /**
194
+ * Configuration for deploying the source code
195
+ *
196
+ * @remarks
197
+ * If set to `false`, the deployment will be disabled.
198
+ */
199
+ deploy?: DeployConfig | false;
200
+ /**
201
+ * The path to the tsconfig file to be used by the compiler
202
+ *
203
+ * @remarks
204
+ * If a value is not provided, the plugin will attempt to find the `tsconfig.json` file in the project root directory. The parsed tsconfig compiler options will be merged with the {@link Options.tsconfigRaw} value (if provided).
205
+ *
206
+ * @defaultValue "\{projectRoot\}/tsconfig.json"
207
+ */
208
+ tsconfig?: string;
209
+ /**
210
+ * The raw {@link TSConfig} object to be used by the compiler. This object will be merged with the `tsconfig.json` file.
211
+ *
212
+ * @see https://www.typescriptlang.org/tsconfig
213
+ *
214
+ * @remarks
215
+ * If populated, this option takes higher priority than `tsconfig`
216
+ */
217
+ tsconfigRaw?: TSConfig;
218
+ }
219
+ interface EnvironmentConfig extends BaseConfig {
220
+ /**
221
+ * Configuration options for the preview server
222
+ */
223
+ preview?: PreviewOptions;
224
+ /**
225
+ * A flag indicating whether the build is for a Server-Side Rendering environment.
226
+ */
227
+ ssr?: boolean;
228
+ /**
229
+ * Define if this environment is used for Server-Side Rendering
230
+ *
231
+ * @defaultValue "server" (if it isn't the client environment)
232
+ */
233
+ consumer?: "client" | "server";
234
+ }
235
+ interface CommonUserConfig extends BaseConfig {
236
+ /**
237
+ * The name of the project
238
+ */
239
+ name?: string;
240
+ /**
241
+ * The project display title
242
+ *
243
+ * @remarks
244
+ * This option is used in documentation generation and other places where a human-readable title is needed.
245
+ */
246
+ title?: string;
247
+ /**
248
+ * A description of the project
249
+ *
250
+ * @remarks
251
+ * If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
252
+ */
253
+ description?: string;
254
+ /**
255
+ * The organization or author of the project
256
+ *
257
+ * @remarks
258
+ * 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.
259
+ */
260
+ organization?: string;
261
+ /**
262
+ * The date to use for compatibility checks
263
+ *
264
+ * @remarks
265
+ * 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.
266
+ *
267
+ * @see https://developers.cloudflare.com/pages/platform/compatibility-dates/
268
+ * @see https://docs.netlify.com/configure-builds/get-started/#set-a-compatibility-date
269
+ * @see https://github.com/unjs/compatx
270
+ */
271
+ compatibilityDate?: DateString;
272
+ /**
273
+ * The log level to use for the Powerlines processes.
274
+ *
275
+ * @defaultValue "info"
276
+ */
277
+ logLevel?: LogLevelLabel | null;
278
+ /**
279
+ * A custom logger function to use for logging messages
280
+ */
281
+ customLogger?: LogFn;
282
+ /**
283
+ * 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.
284
+ *
285
+ * @defaultValue "production"
286
+ */
287
+ mode?: "development" | "test" | "production";
288
+ /**
289
+ * The type of project being built
290
+ *
291
+ * @defaultValue "application"
292
+ */
293
+ type?: ProjectType;
294
+ /**
295
+ * The root directory of the project
296
+ */
297
+ root: string;
298
+ /**
299
+ * The root directory of the project's source code
300
+ *
301
+ * @defaultValue "\{root\}/src"
302
+ */
303
+ sourceRoot?: string;
304
+ /**
305
+ * A path to a custom configuration file to be used instead of the default `storm.json`, `powerlines.config.js`, or `powerlines.config.ts` files.
306
+ *
307
+ * @remarks
308
+ * This option is useful for running Powerlines commands with different configuration files, such as in CI/CD environments or when testing different configurations.
309
+ */
310
+ configFile?: string;
311
+ /**
312
+ * Should the Powerlines CLI processes skip installing missing packages?
313
+ *
314
+ * @remarks
315
+ * This option is useful for CI/CD environments where the installation of packages is handled by a different process.
316
+ *
317
+ * @defaultValue false
318
+ */
319
+ skipInstalls?: boolean;
320
+ /**
321
+ * Should the compiler processes skip any improvements that make use of cache?
322
+ *
323
+ * @defaultValue false
324
+ */
325
+ skipCache?: boolean;
326
+ /**
327
+ * A list of resolvable paths to plugins used during the build process
328
+ */
329
+ plugins?: PluginConfig<any>[];
330
+ /**
331
+ * Environment-specific configurations
332
+ */
333
+ environments?: Record<string, EnvironmentConfig>;
334
+ /**
335
+ * Should a single `build` process be ran for each environment?
336
+ *
337
+ * @remarks
338
+ * This option determines how environments are managed during the `build` process. The available options are:
339
+ *
340
+ * - `false`: A separate build is ran for each environment.
341
+ * - `true`: A single build is ran for all environments.
342
+ *
343
+ * @defaultValue false
344
+ */
345
+ singleBuild?: boolean;
346
+ /**
347
+ * A string identifier that allows a child framework or tool to identify itself when using Powerlines.
348
+ *
349
+ * @remarks
350
+ * If no values are provided for {@link OutputConfig.dts | output.dts}, {@link OutputConfig.builtinPrefix | output.builtinPrefix}, or {@link OutputConfig.artifactsPath | output.artifactsFolder}, this value will be used as the default.
351
+ *
352
+ * @defaultValue "powerlines"
353
+ */
354
+ framework?: string;
355
+ }
356
+ interface UserConfig<TBuildConfig extends BuildConfig = BuildConfig, TBuildResolvedConfig extends BuildResolvedConfig = BuildResolvedConfig, TBuildVariant extends string = any> extends Omit<CommonUserConfig, "build"> {
357
+ /**
358
+ * Configuration provided to build processes
359
+ *
360
+ * @remarks
361
+ * This configuration can be used by plugins during the `build` command. It will generally contain options specific to the selected {@link BuildVariant | build variant}.
362
+ */
363
+ build: Omit<TBuildConfig, "override"> & {
364
+ /**
365
+ * The build variant being used by the Powerlines engine.
366
+ */
367
+ variant?: TBuildVariant;
368
+ /**
369
+ * An optional set of override options to apply to the selected build variant.
370
+ *
371
+ * @remarks
372
+ * This option allows you to provide configuration options with the guarantee that they will **not** be overridden and will take precedence over other build configurations.
373
+ */
374
+ override?: Partial<TBuildResolvedConfig>;
375
+ };
376
+ }
377
+ type PowerlinesCommand = "new" | "prepare" | "build" | "lint" | "test" | "docs" | "deploy" | "clean";
378
+ /**
379
+ * The configuration provided while executing Powerlines commands.
380
+ */
381
+ type InlineConfig<TUserConfig extends UserConfig = UserConfig> = Partial<TUserConfig> & {
382
+ /**
383
+ * A string identifier for the Powerlines command being executed
384
+ */
385
+ command: PowerlinesCommand;
386
+ };
387
+ //#endregion
388
+ export { BabelUserConfig, EnvironmentConfig, InlineConfig, LogFn, OutputConfig, PluginConfig, UserConfig, WorkspaceConfig };