@powerlines/plugin-env 0.16.68 → 0.16.69

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.
@@ -5,10 +5,10 @@ let _powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type")
5
5
  let _stryke_string_format_title_case = require("@stryke/string-format/title-case");
6
6
  let defu = require("defu");
7
7
  defu = require_runtime.__toESM(defu);
8
+ let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
8
9
  let _alloy_js_core = require("@alloy-js/core");
9
10
  let _powerlines_plugin_alloy_core_components_spacing = require("@powerlines/plugin-alloy/core/components/spacing");
10
11
  let _powerlines_plugin_alloy_core_contexts_context = require("@powerlines/plugin-alloy/core/contexts/context");
11
- let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
12
12
  let _alloy_js_typescript = require("@alloy-js/typescript");
13
13
  let _powerlines_plugin_alloy_helpers_refkey = require("@powerlines/plugin-alloy/helpers/refkey");
14
14
  let _powerlines_plugin_alloy_typescript_components_builtin_file = require("@powerlines/plugin-alloy/typescript/components/builtin-file");
@@ -23,28 +23,32 @@ let _powerlines_plugin_alloy_typescript_components_tsdoc = require("@powerlines/
23
23
  function EnvTypeDefinition(props) {
24
24
  const [{ defaultValue, reflection }] = (0, _alloy_js_core.splitProps)(props, ["defaultValue", "reflection"]);
25
25
  const context = (0, _powerlines_plugin_alloy_core_contexts_context.usePowerlines)();
26
- return /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core_jsx_runtime.Fragment, { children: [
27
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_interface_declaration.InterfaceDeclaration, {
26
+ return [
27
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_interface_declaration.InterfaceDeclaration, {
28
28
  name: " EnvBase",
29
29
  defaultValue,
30
30
  reflection,
31
- export: true
31
+ "export": true
32
32
  }),
33
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
34
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
33
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
34
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
35
35
  heading: "The environment configuration object with prefixed keys.",
36
- children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `The \`Env\` type extends the \`EnvBase\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.` })
36
+ get children() {
37
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `The \`Env\` type extends the \`EnvBase\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.` });
38
+ }
37
39
  }),
38
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.TypeDeclaration, {
40
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.TypeDeclaration, {
39
41
  name: "Env",
40
- export: true,
41
- children: _alloy_js_core.code` {
42
+ "export": true,
43
+ get children() {
44
+ return _alloy_js_core.code` {
42
45
  [Key in keyof EnvBase as Key ${context.config.env.prefix.map((prefix) => `| \`${prefix.replace(/_$/g, "")}_\${Key}\``).join(" ")}]: EnvBase[Key];
43
46
  }
44
- `
47
+ `;
48
+ }
45
49
  }),
46
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {})
47
- ] });
50
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {})
51
+ ];
48
52
  }
49
53
  function ConfigPropertyConditional(props) {
50
54
  const [{ context, name }] = (0, _alloy_js_core.splitProps)(props, ["context", "name"]);
@@ -56,39 +60,63 @@ function ConfigPropertyGet(props) {
56
60
  "property",
57
61
  "index"
58
62
  ]);
59
- return /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core_jsx_runtime.Fragment, { children: index === 0 ? /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.IfStatement, {
60
- condition: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
61
- name: property.getNameAsString(),
62
- context
63
- }), /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core.Show, {
64
- when: property.getAlias() && property.getAlias().length > 0,
65
- children: [_alloy_js_core.code` || `, /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
66
- each: property.getAlias(),
67
- joiner: _alloy_js_core.code` || `,
68
- children: (alias) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
69
- name: alias,
70
- context
71
- })
72
- })]
73
- })] }),
74
- children: _alloy_js_core.code`return target["${property.getNameAsString()}"];`
75
- }) : /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.ElseIfClause, {
76
- condition: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
77
- name: property.getNameAsString(),
78
- context
79
- }), /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core.Show, {
80
- when: property.getAlias() && property.getAlias().length > 0,
81
- children: [_alloy_js_core.code` || `, /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
82
- each: property.getAlias(),
83
- joiner: _alloy_js_core.code` || `,
84
- children: (alias) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
85
- name: alias,
86
- context
87
- })
88
- })]
89
- })] }),
90
- children: _alloy_js_core.code`return target["${property.getNameAsString()}"];`
91
- }) });
63
+ return [index === 0 ? (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.IfStatement, {
64
+ get condition() {
65
+ return [(0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
66
+ get name() {
67
+ return property.getNameAsString();
68
+ },
69
+ context
70
+ }), (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
71
+ get when() {
72
+ return (0, _alloy_js_core_jsx_runtime.memo)(() => !!property.getAlias())() && property.getAlias().length > 0;
73
+ },
74
+ get children() {
75
+ return [_alloy_js_core.code` || `, (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
76
+ get each() {
77
+ return property.getAlias();
78
+ },
79
+ joiner: _alloy_js_core.code` || `,
80
+ children: (alias) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
81
+ name: alias,
82
+ context
83
+ })
84
+ })];
85
+ }
86
+ })];
87
+ },
88
+ get children() {
89
+ return _alloy_js_core.code`return target["${property.getNameAsString()}"];`;
90
+ }
91
+ }) : (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.ElseIfClause, {
92
+ get condition() {
93
+ return [(0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
94
+ get name() {
95
+ return property.getNameAsString();
96
+ },
97
+ context
98
+ }), (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
99
+ get when() {
100
+ return (0, _alloy_js_core_jsx_runtime.memo)(() => !!property.getAlias())() && property.getAlias().length > 0;
101
+ },
102
+ get children() {
103
+ return [_alloy_js_core.code` || `, (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
104
+ get each() {
105
+ return property.getAlias();
106
+ },
107
+ joiner: _alloy_js_core.code` || `,
108
+ children: (alias) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
109
+ name: alias,
110
+ context
111
+ })
112
+ })];
113
+ }
114
+ })];
115
+ },
116
+ get children() {
117
+ return _alloy_js_core.code`return target["${property.getNameAsString()}"];`;
118
+ }
119
+ })];
92
120
  }
93
121
  function ConfigPropertySet(props) {
94
122
  const [{ context, property, index }] = (0, _alloy_js_core.splitProps)(props, [
@@ -96,45 +124,69 @@ function ConfigPropertySet(props) {
96
124
  "property",
97
125
  "index"
98
126
  ]);
99
- return /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core_jsx_runtime.Fragment, { children: index === 0 ? /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.IfStatement, {
100
- condition: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
101
- name: property.getNameAsString(),
102
- context
103
- }), /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core.Show, {
104
- when: property.getAlias() && property.getAlias().length > 0,
105
- children: [_alloy_js_core.code` || `, /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
106
- each: property.getAlias(),
107
- joiner: _alloy_js_core.code` || `,
108
- children: (alias) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
109
- name: alias,
110
- context
111
- })
112
- })]
113
- })] }),
114
- children: _alloy_js_core.code`
127
+ return [index === 0 ? (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.IfStatement, {
128
+ get condition() {
129
+ return [(0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
130
+ get name() {
131
+ return property.getNameAsString();
132
+ },
133
+ context
134
+ }), (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
135
+ get when() {
136
+ return (0, _alloy_js_core_jsx_runtime.memo)(() => !!property.getAlias())() && property.getAlias().length > 0;
137
+ },
138
+ get children() {
139
+ return [_alloy_js_core.code` || `, (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
140
+ get each() {
141
+ return property.getAlias();
142
+ },
143
+ joiner: _alloy_js_core.code` || `,
144
+ children: (alias) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
145
+ name: alias,
146
+ context
147
+ })
148
+ })];
149
+ }
150
+ })];
151
+ },
152
+ get children() {
153
+ return _alloy_js_core.code`
115
154
  target["${property.getNameAsString()}"] = newValue;
116
155
  return true;
117
- `
118
- }) : /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.ElseIfClause, {
119
- condition: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
120
- name: property.getNameAsString(),
121
- context
122
- }), /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core.Show, {
123
- when: property.getAlias() && property.getAlias().length > 0,
124
- children: [_alloy_js_core.code` || `, /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
125
- each: property.getAlias(),
126
- joiner: _alloy_js_core.code` || `,
127
- children: (alias) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyConditional, {
128
- name: alias,
129
- context
130
- })
131
- })]
132
- })] }),
133
- children: _alloy_js_core.code`
156
+ `;
157
+ }
158
+ }) : (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.ElseIfClause, {
159
+ get condition() {
160
+ return [(0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
161
+ get name() {
162
+ return property.getNameAsString();
163
+ },
164
+ context
165
+ }), (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
166
+ get when() {
167
+ return (0, _alloy_js_core_jsx_runtime.memo)(() => !!property.getAlias())() && property.getAlias().length > 0;
168
+ },
169
+ get children() {
170
+ return [_alloy_js_core.code` || `, (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
171
+ get each() {
172
+ return property.getAlias();
173
+ },
174
+ joiner: _alloy_js_core.code` || `,
175
+ children: (alias) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyConditional, {
176
+ name: alias,
177
+ context
178
+ })
179
+ })];
180
+ }
181
+ })];
182
+ },
183
+ get children() {
184
+ return _alloy_js_core.code`
134
185
  target["${property.getNameAsString()}"] = newValue;
135
186
  return true;
136
- `
137
- }) });
187
+ `;
188
+ }
189
+ })];
138
190
  }
139
191
  const createEnvRefkey = (0, _powerlines_plugin_alloy_helpers_refkey.refkey)("createEnv");
140
192
  const envRefkey = (0, _powerlines_plugin_alloy_helpers_refkey.refkey)("env");
@@ -159,62 +211,74 @@ function EnvBuiltin(props) {
159
211
  });
160
212
  const reflectionGetProperties = (0, _alloy_js_core.computed)(() => reflection?.getProperties().filter((property) => !property.isIgnored()).sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())) ?? []);
161
213
  const reflectionSetProperties = (0, _alloy_js_core.computed)(() => reflection?.getProperties().filter((property) => !property.isIgnored() && !property.isReadonly()).sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())) ?? []);
162
- return /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_builtin_file.BuiltinFile, {
214
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_builtin_file.BuiltinFile, (0, _alloy_js_core_jsx_runtime.mergeProps)({
163
215
  id: "env",
164
- description: "The environment configuration module provides an interface to define environment configuration parameters.",
165
- ...rest,
166
- imports: (0, defu.default)({ "@powerlines/deepkit/vendor/type": [
167
- "stringify",
168
- "serializer",
169
- "serializeFunction",
170
- "deserializeFunction",
171
- "ReflectionKind",
172
- "Serializer",
173
- "TemplateState",
174
- "Type",
175
- "TypeProperty",
176
- "TypePropertySignature"
177
- ] }, rest.imports ?? {}),
178
- children: [
179
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_core.Show, {
180
- when: Boolean(reflection),
181
- children: [
182
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(EnvTypeDefinition, {
183
- defaultValue: defaultValue.value,
184
- reflection
185
- }),
186
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {}),
187
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {})
188
- ]
189
- }),
190
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_object_declaration.ObjectDeclaration, {
191
- name: "initialEnv",
192
- type: "Partial<EnvBase>",
193
- defaultValue,
194
- reflection: envInstance,
195
- export: true,
196
- const: true,
197
- doc: "The initial environment configuration object values for the runtime."
198
- }),
199
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
200
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
201
- heading: "The environment configuration serializer for the Powerlines application.",
202
- children: [
203
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://deepkit.io/docs/serialization/serializers` }),
204
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918` }),
205
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This serializer is used to serialize and deserialize the Powerlines environment configuration.` })
206
- ]
207
- }),
208
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.ClassDeclaration, {
209
- refkey: envSerializerRefkey,
210
- name: "EnvSerializer",
211
- extends: "Serializer",
212
- export: true,
213
- children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.ClassMethod, {
214
- name: "constructor",
215
- public: true,
216
- doc: "Initializes a new instance of the `EnvSerializer` class.",
217
- children: _alloy_js_core.code`super("env");
216
+ description: "The environment configuration module provides an interface to define environment configuration parameters."
217
+ }, rest, {
218
+ get imports() {
219
+ return (0, defu.default)({ "@powerlines/deepkit/vendor/type": [
220
+ "stringify",
221
+ "serializer",
222
+ "serializeFunction",
223
+ "deserializeFunction",
224
+ "ReflectionKind",
225
+ "Serializer",
226
+ "TemplateState",
227
+ "Type",
228
+ "TypeProperty",
229
+ "TypePropertySignature"
230
+ ] }, rest.imports ?? {});
231
+ },
232
+ get children() {
233
+ return [
234
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
235
+ get when() {
236
+ return Boolean(reflection);
237
+ },
238
+ get children() {
239
+ return [
240
+ (0, _alloy_js_core_jsx_runtime.createComponent)(EnvTypeDefinition, {
241
+ get defaultValue() {
242
+ return defaultValue.value;
243
+ },
244
+ reflection
245
+ }),
246
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
247
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
248
+ ];
249
+ }
250
+ }),
251
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_object_declaration.ObjectDeclaration, {
252
+ name: "initialEnv",
253
+ type: "Partial<EnvBase>",
254
+ defaultValue,
255
+ reflection: envInstance,
256
+ "export": true,
257
+ "const": true,
258
+ doc: "The initial environment configuration object values for the runtime."
259
+ }),
260
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
261
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
262
+ heading: "The environment configuration serializer for the Powerlines application.",
263
+ get children() {
264
+ return [
265
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://deepkit.io/docs/serialization/serializers` }),
266
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918` }),
267
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This serializer is used to serialize and deserialize the Powerlines environment configuration.` })
268
+ ];
269
+ }
270
+ }),
271
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.ClassDeclaration, {
272
+ refkey: envSerializerRefkey,
273
+ name: "EnvSerializer",
274
+ "extends": "Serializer",
275
+ "export": true,
276
+ get children() {
277
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.ClassMethod, {
278
+ name: "constructor",
279
+ "public": true,
280
+ doc: "Initializes a new instance of the `EnvSerializer` class.",
281
+ children: _alloy_js_core.code`super("env");
218
282
 
219
283
  this.deserializeRegistry.register(
220
284
  ReflectionKind.boolean,
@@ -224,84 +288,99 @@ function EnvBuiltin(props) {
224
288
  );
225
289
  }
226
290
  ); `
227
- })
228
- }),
229
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
230
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
231
- heading: "A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.",
232
- children: [
233
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://deepkit.io/docs/serialization/serializers` }),
234
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918` }),
235
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This serializer is used to serialize and deserialize the Powerlines environment configuration.` })
236
- ]
237
- }),
238
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
239
- name: "envSerializer",
240
- export: false,
241
- const: true,
242
- initializer: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.NewExpression, {
243
- args: [],
244
- target: "EnvSerializer"
245
- })
246
- }),
247
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
248
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
249
- heading: "Serialize a environment configuration object to JSON data objects (not a JSON string).",
250
- children: [
251
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `The resulting JSON object can be stringified using \`JSON.stringify()\`.` }),
252
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocExample, { children: `const json = serializeEnv(env);` }),
253
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocThrows, { children: `ValidationError when serialization or validation fails.` })
254
- ]
255
- }),
256
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
257
- name: "serializeEnv",
258
- export: true,
259
- const: true,
260
- initializer: "serializeFunction<EnvBase>(envSerializer)"
261
- }),
262
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
263
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
264
- heading: "Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.",
265
- children: [
266
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `Types that are already correct will be used as-is.` }),
267
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocExample, { children: `const env = deserializeEnv(json);` }),
268
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocThrows, { children: `ValidationError when deserialization fails.` })
269
- ]
270
- }),
271
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
272
- name: "deserializeEnv",
273
- export: true,
274
- const: true,
275
- initializer: "deserializeFunction<EnvBase>(envSerializer)"
276
- }),
277
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
278
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
279
- heading: "Initializes the Powerlines environment configuration module.",
280
- children: [
281
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This function initializes the Powerlines environment configuration object.` }),
282
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocParam, {
283
- name: "environmentConfig",
284
- children: `The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`
285
- }),
286
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocReturns, { children: `The initialized Powerlines configuration object.` })
287
- ]
288
- }),
289
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.Show, {
290
- when: Boolean(context?.entryPath),
291
- children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsxs)(_alloy_js_typescript.FunctionDeclaration, {
292
- refkey: createEnvRefkey,
293
- async: false,
294
- export: true,
295
- name: "createEnv",
296
- parameters: [{
297
- name: "environmentConfig",
298
- type: `Partial<Env>`,
299
- optional: false,
300
- default: "{}"
301
- }],
302
- returnType: "Env",
303
- children: [
304
- _alloy_js_core.code`
291
+ });
292
+ }
293
+ }),
294
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
295
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
296
+ heading: "A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.",
297
+ get children() {
298
+ return [
299
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://deepkit.io/docs/serialization/serializers` }),
300
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocLink, { children: `https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918` }),
301
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This serializer is used to serialize and deserialize the Powerlines environment configuration.` })
302
+ ];
303
+ }
304
+ }),
305
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
306
+ name: "envSerializer",
307
+ "export": false,
308
+ "const": true,
309
+ get initializer() {
310
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.NewExpression, {
311
+ args: [],
312
+ target: "EnvSerializer"
313
+ });
314
+ }
315
+ }),
316
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
317
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
318
+ heading: "Serialize a environment configuration object to JSON data objects (not a JSON string).",
319
+ get children() {
320
+ return [
321
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `The resulting JSON object can be stringified using \`JSON.stringify()\`.` }),
322
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocExample, { children: `const json = serializeEnv(env);` }),
323
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocThrows, { children: `ValidationError when serialization or validation fails.` })
324
+ ];
325
+ }
326
+ }),
327
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
328
+ name: "serializeEnv",
329
+ "export": true,
330
+ "const": true,
331
+ initializer: "serializeFunction<EnvBase>(envSerializer)"
332
+ }),
333
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
334
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
335
+ heading: "Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.",
336
+ get children() {
337
+ return [
338
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `Types that are already correct will be used as-is.` }),
339
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocExample, { children: `const env = deserializeEnv(json);` }),
340
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocThrows, { children: `ValidationError when deserialization fails.` })
341
+ ];
342
+ }
343
+ }),
344
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
345
+ name: "deserializeEnv",
346
+ "export": true,
347
+ "const": true,
348
+ initializer: "deserializeFunction<EnvBase>(envSerializer)"
349
+ }),
350
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
351
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
352
+ heading: "Initializes the Powerlines environment configuration module.",
353
+ get children() {
354
+ return [
355
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This function initializes the Powerlines environment configuration object.` }),
356
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocParam, {
357
+ name: "environmentConfig",
358
+ children: `The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`
359
+ }),
360
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocReturns, { children: `The initialized Powerlines configuration object.` })
361
+ ];
362
+ }
363
+ }),
364
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
365
+ get when() {
366
+ return Boolean(context?.entryPath);
367
+ },
368
+ get children() {
369
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.FunctionDeclaration, {
370
+ refkey: createEnvRefkey,
371
+ async: false,
372
+ "export": true,
373
+ name: "createEnv",
374
+ parameters: [{
375
+ name: "environmentConfig",
376
+ type: `Partial<Env>`,
377
+ optional: false,
378
+ default: "{}"
379
+ }],
380
+ returnType: "Env",
381
+ get children() {
382
+ return [
383
+ _alloy_js_core.code`
305
384
  return new Proxy<Env>(
306
385
  deserializeEnv({
307
386
  ...initialEnv,
@@ -309,60 +388,66 @@ function EnvBuiltin(props) {
309
388
  }) as Env,
310
389
  {
311
390
  get: (target: EnvBase, propertyName: string) => { `,
312
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {}),
313
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
314
- each: reflectionGetProperties,
315
- children: (property, index) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertyGet, {
316
- index,
317
- context,
318
- property
319
- })
320
- }),
321
- _alloy_js_core.code`
391
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
392
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
393
+ each: reflectionGetProperties,
394
+ children: (property, index) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertyGet, {
395
+ index,
396
+ context,
397
+ property
398
+ })
399
+ }),
400
+ _alloy_js_core.code`
322
401
  return undefined;
323
402
  }, `,
324
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
325
- _alloy_js_core.code` set: (target: EnvBase, propertyName: string, newValue: any) => { `,
326
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {}),
327
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.For, {
328
- each: reflectionSetProperties,
329
- ender: _alloy_js_core.code` else `,
330
- children: (property, index) => /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(ConfigPropertySet, {
331
- index,
332
- context,
333
- property
334
- })
335
- }),
336
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {}),
337
- _alloy_js_core.code`return false;
403
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
404
+ _alloy_js_core.code` set: (target: EnvBase, propertyName: string, newValue: any) => { `,
405
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
406
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
407
+ each: reflectionSetProperties,
408
+ ender: _alloy_js_core.code` else `,
409
+ children: (property, index) => (0, _alloy_js_core_jsx_runtime.createComponent)(ConfigPropertySet, {
410
+ index,
411
+ context,
412
+ property
413
+ })
414
+ }),
415
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
416
+ _alloy_js_core.code`return false;
338
417
  }
339
418
  }
340
419
  );
341
420
  `
342
- ]
343
- })
344
- }),
345
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
346
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)("hbr", {}),
347
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
348
- heading: "The environment configuration object.",
349
- children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This object provides access to the environment configuration parameters in the application runtime.` })
350
- }),
351
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
352
- refkey: envRefkey,
353
- name: "env",
354
- type: "Env",
355
- export: true,
356
- const: true,
357
- initializer: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core_jsx_runtime.Fragment, { children: _alloy_js_core.code`createEnv(${defaultConfig || "{}"} as Partial<Env>);` })
358
- }),
359
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
360
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
361
- export: true,
362
- const: true,
363
- name: "isCI",
364
- doc: "Detect if the application is running in a continuous integration (CI) environment.",
365
- initializer: _alloy_js_core.code`Boolean(
421
+ ];
422
+ }
423
+ });
424
+ }
425
+ }),
426
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
427
+ (0, _alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
428
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
429
+ heading: "The environment configuration object.",
430
+ get children() {
431
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: `This object provides access to the environment configuration parameters in the application runtime.` });
432
+ }
433
+ }),
434
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
435
+ refkey: envRefkey,
436
+ name: "env",
437
+ type: "Env",
438
+ "export": true,
439
+ "const": true,
440
+ get initializer() {
441
+ return [_alloy_js_core.code`createEnv(${defaultConfig || "{}"} as Partial<Env>);`];
442
+ }
443
+ }),
444
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
445
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
446
+ "export": true,
447
+ "const": true,
448
+ name: "isCI",
449
+ doc: "Detect if the application is running in a continuous integration (CI) environment.",
450
+ initializer: _alloy_js_core.code`Boolean(
366
451
  env.CI ||
367
452
  env.RUN_ID ||
368
453
  env.AGOLA_GIT_REF ||
@@ -416,61 +501,66 @@ function EnvBuiltin(props) {
416
501
  env.XCS || false
417
502
  );
418
503
  `
419
- }),
420
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
421
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
422
- heading: "Detect the \\`mode\\` of the current runtime environment.",
423
- children: /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: _alloy_js_core.code`The \`mode\` is determined by the \`MODE\` environment variable, or falls back to the \`NEXT_PUBLIC_VERCEL_ENV\`, \`NODE_ENV\`, or defaults to \`production\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:
504
+ }),
505
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
506
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDoc, {
507
+ heading: "Detect the \\`mode\\` of the current runtime environment.",
508
+ get children() {
509
+ return (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_typescript_components_tsdoc.TSDocRemarks, { children: _alloy_js_core.code`The \`mode\` is determined by the \`MODE\` environment variable, or falls back to the \`NEXT_PUBLIC_VERCEL_ENV\`, \`NODE_ENV\`, or defaults to \`production\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:
424
510
  - \`production\`
425
511
  - \`test\`
426
512
  - \`development\`
427
- ` })
428
- }),
429
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
430
- export: true,
431
- const: true,
432
- name: "mode",
433
- initializer: _alloy_js_core.code`String(env.MODE) || "production"; `
434
- }),
435
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
436
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
437
- export: true,
438
- const: true,
439
- name: "isProduction",
440
- doc: "Detect if the application is running in `\"production\"` mode",
441
- initializer: _alloy_js_core.code`["prd", "prod", "production"].includes(mode.toLowerCase()); `
442
- }),
443
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
444
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
445
- export: true,
446
- const: true,
447
- name: "isTest",
448
- doc: "Detect if the application is running in `\"test\"` mode",
449
- initializer: _alloy_js_core.code`["tst", "test", "testing", "stg", "stage", "staging"].includes(mode.toLowerCase()) || env.TEST; `
450
- }),
451
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
452
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
453
- export: true,
454
- const: true,
455
- name: "isDevelopment",
456
- doc: "Detect if the application is running in `\"development\"` mode",
457
- initializer: _alloy_js_core.code`["dev", "development"].includes(mode.toLowerCase()); `
458
- }),
459
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
460
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_typescript.VarDeclaration, {
461
- export: true,
462
- const: true,
463
- name: "isDebug",
464
- doc: "Detect if the application is currently being debugged",
465
- initializer: _alloy_js_core.code`Boolean(isDevelopment && env.DEBUG); `
466
- }),
467
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
468
- /* @__PURE__ */ (0, _alloy_js_core_jsx_runtime.jsx)(_alloy_js_core.Show, {
469
- when: Boolean(children),
470
- children
471
- })
472
- ]
473
- });
513
+ ` });
514
+ }
515
+ }),
516
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
517
+ "export": true,
518
+ "const": true,
519
+ name: "mode",
520
+ initializer: _alloy_js_core.code`String(env.MODE) || "production"; `
521
+ }),
522
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
523
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
524
+ "export": true,
525
+ "const": true,
526
+ name: "isProduction",
527
+ doc: "Detect if the application is running in `\"production\"` mode",
528
+ initializer: _alloy_js_core.code`["prd", "prod", "production"].includes(mode.toLowerCase()); `
529
+ }),
530
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
531
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
532
+ "export": true,
533
+ "const": true,
534
+ name: "isTest",
535
+ doc: "Detect if the application is running in `\"test\"` mode",
536
+ initializer: _alloy_js_core.code`["tst", "test", "testing", "stg", "stage", "staging"].includes(mode.toLowerCase()) || env.TEST; `
537
+ }),
538
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
539
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
540
+ "export": true,
541
+ "const": true,
542
+ name: "isDevelopment",
543
+ doc: "Detect if the application is running in `\"development\"` mode",
544
+ initializer: _alloy_js_core.code`["dev", "development"].includes(mode.toLowerCase()); `
545
+ }),
546
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
547
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_typescript.VarDeclaration, {
548
+ "export": true,
549
+ "const": true,
550
+ name: "isDebug",
551
+ doc: "Detect if the application is currently being debugged",
552
+ initializer: _alloy_js_core.code`Boolean(isDevelopment && env.DEBUG); `
553
+ }),
554
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
555
+ (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.Show, {
556
+ get when() {
557
+ return Boolean(children);
558
+ },
559
+ children
560
+ })
561
+ ];
562
+ }
563
+ }));
474
564
  }
475
565
 
476
566
  //#endregion