@powerlines/plugin-env 0.16.0 → 0.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/helpers/reflect.cjs +28 -6
- package/dist/helpers/reflect.d.cts +22 -0
- package/dist/helpers/reflect.d.cts.map +1 -1
- package/dist/helpers/reflect.d.mts +22 -0
- package/dist/helpers/reflect.d.mts.map +1 -1
- package/dist/helpers/reflect.mjs +28 -6
- package/dist/helpers/reflect.mjs.map +1 -1
- package/dist/index.cjs +6 -5
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/helpers/reflect.cjs
CHANGED
|
@@ -208,17 +208,27 @@ createSecretsReflection.__type = [
|
|
|
208
208
|
"createSecretsReflection",
|
|
209
209
|
"Pn!2\"n#2$>%P\"7&/'"
|
|
210
210
|
];
|
|
211
|
+
/**
|
|
212
|
+
* Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.
|
|
213
|
+
*
|
|
214
|
+
* @remarks
|
|
215
|
+
* The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
216
|
+
*
|
|
217
|
+
* @param context - The plugin context
|
|
218
|
+
* @param file - The file path to reflect the environment configuration type definition from
|
|
219
|
+
* @param name - The name of the type definition to reflect the environment configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
220
|
+
* @returns A reflection of the environment configuration type definition, merged with the default environment configuration reflection and the currently used environment configuration reflection. The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
221
|
+
*/
|
|
211
222
|
async function reflectEnv(context, file, name) {
|
|
212
223
|
let config;
|
|
213
224
|
if (file) config = (0, __powerlines_deepkit_vendor_type.resolveClassType)(await (0, __powerlines_deepkit_reflect_type.reflectType)(context, {
|
|
214
225
|
file: !require_is_parent_path.isParentPath(file, context.workspaceConfig.workspaceRoot) ? require_join_paths.joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
215
226
|
name
|
|
216
227
|
}));
|
|
217
|
-
const defaultConfigType = await (0, __powerlines_deepkit_reflect_type.reflectType)(context, await require_helpers_persistence.getEnvDefaultTypeDefinition(context));
|
|
218
228
|
return mergeEnvReflections(context, [
|
|
219
229
|
await require_helpers_persistence.readEnvTypeReflection(context, "env"),
|
|
220
230
|
config,
|
|
221
|
-
(0, __powerlines_deepkit_vendor_type.resolveClassType)(
|
|
231
|
+
(0, __powerlines_deepkit_vendor_type.resolveClassType)(await (0, __powerlines_deepkit_reflect_type.reflectType)(context, await require_helpers_persistence.getEnvDefaultTypeDefinition(context)))
|
|
222
232
|
].filter(Boolean));
|
|
223
233
|
}
|
|
224
234
|
reflectEnv.__type = [
|
|
@@ -227,19 +237,30 @@ reflectEnv.__type = [
|
|
|
227
237
|
"file",
|
|
228
238
|
"name",
|
|
229
239
|
"reflectEnv",
|
|
230
|
-
"
|
|
240
|
+
"Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.",
|
|
241
|
+
"Pn!2\"&2#8&2$8\"/%?&"
|
|
231
242
|
];
|
|
243
|
+
/**
|
|
244
|
+
* Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.
|
|
245
|
+
*
|
|
246
|
+
* @remarks
|
|
247
|
+
* The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
248
|
+
*
|
|
249
|
+
* @param context - The plugin context
|
|
250
|
+
* @param file - The file path to reflect the secrets configuration type definition from
|
|
251
|
+
* @param name - The name of the type definition to reflect the secrets configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
252
|
+
* @returns A reflection of the secrets configuration type definition, merged with the default secrets configuration reflection and the currently used secrets configuration reflection. The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
253
|
+
*/
|
|
232
254
|
async function reflectSecrets(context, file, name) {
|
|
233
255
|
let config;
|
|
234
256
|
if (file) config = (0, __powerlines_deepkit_vendor_type.resolveClassType)(await (0, __powerlines_deepkit_reflect_type.reflectType)(context, {
|
|
235
257
|
file: !require_is_parent_path.isParentPath(file, context.workspaceConfig.workspaceRoot) ? require_join_paths.joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
236
258
|
name
|
|
237
259
|
}));
|
|
238
|
-
const defaultSecretsType = await (0, __powerlines_deepkit_reflect_type.reflectType)(context, await require_helpers_persistence.getSecretsDefaultTypeDefinition(context));
|
|
239
260
|
return mergeSecretsReflections(context, [
|
|
240
261
|
await require_helpers_persistence.readSecretsReflection(context),
|
|
241
262
|
config,
|
|
242
|
-
(0, __powerlines_deepkit_vendor_type.resolveClassType)(
|
|
263
|
+
(0, __powerlines_deepkit_vendor_type.resolveClassType)(await (0, __powerlines_deepkit_reflect_type.reflectType)(context, await require_helpers_persistence.getSecretsDefaultTypeDefinition(context)))
|
|
243
264
|
].filter(Boolean));
|
|
244
265
|
}
|
|
245
266
|
reflectSecrets.__type = [
|
|
@@ -248,7 +269,8 @@ reflectSecrets.__type = [
|
|
|
248
269
|
"file",
|
|
249
270
|
"name",
|
|
250
271
|
"reflectSecrets",
|
|
251
|
-
"
|
|
272
|
+
"Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.",
|
|
273
|
+
"Pn!2\"&2#8&2$8\"/%?&"
|
|
252
274
|
];
|
|
253
275
|
|
|
254
276
|
//#endregion
|
|
@@ -39,7 +39,29 @@ declare class BaseSecrets implements SecretsInterface {
|
|
|
39
39
|
}
|
|
40
40
|
declare function createEnvReflection(context: EnvPluginContext, options?: CreateEnvReflectionOptions): ReflectionClass<any>;
|
|
41
41
|
declare function createSecretsReflection(context: EnvPluginContext, options?: CreateEnvReflectionOptions): ReflectionClass<any>;
|
|
42
|
+
/**
|
|
43
|
+
* Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
47
|
+
*
|
|
48
|
+
* @param context - The plugin context
|
|
49
|
+
* @param file - The file path to reflect the environment configuration type definition from
|
|
50
|
+
* @param name - The name of the type definition to reflect the environment configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
51
|
+
* @returns A reflection of the environment configuration type definition, merged with the default environment configuration reflection and the currently used environment configuration reflection. The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
52
|
+
*/
|
|
42
53
|
declare function reflectEnv(context: EnvPluginContext, file?: string, name?: string): Promise<ReflectionClass<any>>;
|
|
54
|
+
/**
|
|
55
|
+
* Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.
|
|
56
|
+
*
|
|
57
|
+
* @remarks
|
|
58
|
+
* The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
59
|
+
*
|
|
60
|
+
* @param context - The plugin context
|
|
61
|
+
* @param file - The file path to reflect the secrets configuration type definition from
|
|
62
|
+
* @param name - The name of the type definition to reflect the secrets configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
63
|
+
* @returns A reflection of the secrets configuration type definition, merged with the default secrets configuration reflection and the currently used secrets configuration reflection. The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
64
|
+
*/
|
|
43
65
|
declare function reflectSecrets(context: EnvPluginContext, file?: string, name?: string): Promise<ReflectionClass<any>>;
|
|
44
66
|
declare type __ΩCreateEnvReflectionOptions = any[];
|
|
45
67
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reflect.d.cts","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":[],"mappings":";;;;;iBAuCgB,mBAAA,UACL,+BACI,yBACZ;iBAQa,uBAAA,UACL,+BACI,yBACZ;AAda,UAsBC,0BAAA,CAtBkB;EACxB,IAAA,CAAA,EAsBF,iBAtBE,GAsBkB,SAtBlB;EACI,eAAA,CAAA,EAsBK,eAtBL,CAAA,GAAA,CAAA;;AACG,cAwBL,OAAA,YAAmB,YAxBd,CAAA;EAQF,QAAA,EAAA,MAAA;EACL,WAAA,EAAA,MAAA;EACI,QAAA,EAAA,MAAA;EACZ,eAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAQD,UAAA,EAAA,MAAA;EACR,WAAA,EAAA,MAAA;EAAoB,YAAA,EAAA,MAAA;EACT,QAAA,EAAA,MAAA,GAAA,SAAA,GAAA,SAAA;EAAe,IAAA,EAAA,aAAA,GAAA,MAAA,GAAA,YAAA;EAGtB,WAAQ,EAAA,MAAA;EAgDR,KAAA,EAAA,OAAY;EAIT,IAAA,EAAA,OAAA;EACL,OAAA,EAAA,OAAA;EACA,QAAA,EAAA,OAAA;EACR,WAAA,EAAA,MAAA,GAAA,OAAA;EAAe,eAAA,EAAA,MAAA,GAAA,OAAA;EAyCF,UAAA,EAAA,OAAA;EACL,kBAAA,EAAA,OAAA;EACA,SAAA,EAAA,MAAA;EACR,gBAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;
|
|
1
|
+
{"version":3,"file":"reflect.d.cts","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":[],"mappings":";;;;;iBAuCgB,mBAAA,UACL,+BACI,yBACZ;iBAQa,uBAAA,UACL,+BACI,yBACZ;AAda,UAsBC,0BAAA,CAtBkB;EACxB,IAAA,CAAA,EAsBF,iBAtBE,GAsBkB,SAtBlB;EACI,eAAA,CAAA,EAsBK,eAtBL,CAAA,GAAA,CAAA;;AACG,cAwBL,OAAA,YAAmB,YAxBd,CAAA;EAQF,QAAA,EAAA,MAAA;EACL,WAAA,EAAA,MAAA;EACI,QAAA,EAAA,MAAA;EACZ,eAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAQD,UAAA,EAAA,MAAA;EACR,WAAA,EAAA,MAAA;EAAoB,YAAA,EAAA,MAAA;EACT,QAAA,EAAA,MAAA,GAAA,SAAA,GAAA,SAAA;EAAe,IAAA,EAAA,aAAA,GAAA,MAAA,GAAA,YAAA;EAGtB,WAAQ,EAAA,MAAA;EAgDR,KAAA,EAAA,OAAY;EAIT,IAAA,EAAA,OAAA;EACL,OAAA,EAAA,OAAA;EACA,QAAA,EAAA,OAAA;EACR,WAAA,EAAA,MAAA,GAAA,OAAA;EAAe,eAAA,EAAA,MAAA,GAAA,OAAA;EAyCF,UAAA,EAAA,OAAA;EACL,kBAAA,EAAA,OAAA;EACA,SAAA,EAAA,MAAA;EACR,gBAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAoDI,EAAA,EAAA,OAAA;;AAGP,cA1GF,WAAA,YAAuB,gBA0GrB,CAAA;EAAA,cAAA,EAAA,MAAA;;AAqCO,iBA3IN,mBAAA,CA2IoB,OAAA,EA1IzB,gBA0IyB,EAAA,OAAA,CAAA,EAzIzB,0BAyIyB,CAAA,EAxIjC,eAwIiC,CAAA,GAAA,CAAA;AACzB,iBAhGK,uBAAA,CAgGL,OAAA,EA/FA,gBA+FA,EAAA,OAAA,CAAA,EA9FA,0BA8FA,CAAA,EA7FR,eA6FQ,CAAA,GAAA,CAAA;;;;;;;;;;;;iBAzCW,UAAA,UACX,iDAEI,QAAA;;;;;;;;;;;;iBAqCO,cAAA,UACX,iDAEI,QAAA"}
|
|
@@ -39,7 +39,29 @@ declare class BaseSecrets implements SecretsInterface {
|
|
|
39
39
|
}
|
|
40
40
|
declare function createEnvReflection(context: EnvPluginContext, options?: CreateEnvReflectionOptions): ReflectionClass<any>;
|
|
41
41
|
declare function createSecretsReflection(context: EnvPluginContext, options?: CreateEnvReflectionOptions): ReflectionClass<any>;
|
|
42
|
+
/**
|
|
43
|
+
* Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.
|
|
44
|
+
*
|
|
45
|
+
* @remarks
|
|
46
|
+
* The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
47
|
+
*
|
|
48
|
+
* @param context - The plugin context
|
|
49
|
+
* @param file - The file path to reflect the environment configuration type definition from
|
|
50
|
+
* @param name - The name of the type definition to reflect the environment configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
51
|
+
* @returns A reflection of the environment configuration type definition, merged with the default environment configuration reflection and the currently used environment configuration reflection. The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
52
|
+
*/
|
|
42
53
|
declare function reflectEnv(context: EnvPluginContext, file?: string, name?: string): Promise<ReflectionClass<any>>;
|
|
54
|
+
/**
|
|
55
|
+
* Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.
|
|
56
|
+
*
|
|
57
|
+
* @remarks
|
|
58
|
+
* The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
59
|
+
*
|
|
60
|
+
* @param context - The plugin context
|
|
61
|
+
* @param file - The file path to reflect the secrets configuration type definition from
|
|
62
|
+
* @param name - The name of the type definition to reflect the secrets configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
63
|
+
* @returns A reflection of the secrets configuration type definition, merged with the default secrets configuration reflection and the currently used secrets configuration reflection. The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
64
|
+
*/
|
|
43
65
|
declare function reflectSecrets(context: EnvPluginContext, file?: string, name?: string): Promise<ReflectionClass<any>>;
|
|
44
66
|
declare type __ΩCreateEnvReflectionOptions = any[];
|
|
45
67
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reflect.d.mts","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":[],"mappings":";;;;;iBAuCgB,mBAAA,UACL,+BACI,yBACZ;iBAQa,uBAAA,UACL,+BACI,yBACZ;AAda,UAsBC,0BAAA,CAtBkB;EACxB,IAAA,CAAA,EAsBF,iBAtBE,GAsBkB,SAtBlB;EACI,eAAA,CAAA,EAsBK,eAtBL,CAAA,GAAA,CAAA;;AACG,cAwBL,OAAA,YAAmB,YAxBd,CAAA;EAQF,QAAA,EAAA,MAAA;EACL,WAAA,EAAA,MAAA;EACI,QAAA,EAAA,MAAA;EACZ,eAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAQD,UAAA,EAAA,MAAA;EACR,WAAA,EAAA,MAAA;EAAoB,YAAA,EAAA,MAAA;EACT,QAAA,EAAA,MAAA,GAAA,SAAA,GAAA,SAAA;EAAe,IAAA,EAAA,aAAA,GAAA,MAAA,GAAA,YAAA;EAGtB,WAAQ,EAAA,MAAA;EAgDR,KAAA,EAAA,OAAY;EAIT,IAAA,EAAA,OAAA;EACL,OAAA,EAAA,OAAA;EACA,QAAA,EAAA,OAAA;EACR,WAAA,EAAA,MAAA,GAAA,OAAA;EAAe,eAAA,EAAA,MAAA,GAAA,OAAA;EAyCF,UAAA,EAAA,OAAA;EACL,kBAAA,EAAA,OAAA;EACA,SAAA,EAAA,MAAA;EACR,gBAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;
|
|
1
|
+
{"version":3,"file":"reflect.d.mts","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":[],"mappings":";;;;;iBAuCgB,mBAAA,UACL,+BACI,yBACZ;iBAQa,uBAAA,UACL,+BACI,yBACZ;AAda,UAsBC,0BAAA,CAtBkB;EACxB,IAAA,CAAA,EAsBF,iBAtBE,GAsBkB,SAtBlB;EACI,eAAA,CAAA,EAsBK,eAtBL,CAAA,GAAA,CAAA;;AACG,cAwBL,OAAA,YAAmB,YAxBd,CAAA;EAQF,QAAA,EAAA,MAAA;EACL,WAAA,EAAA,MAAA;EACI,QAAA,EAAA,MAAA;EACZ,eAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAQD,UAAA,EAAA,MAAA;EACR,WAAA,EAAA,MAAA;EAAoB,YAAA,EAAA,MAAA;EACT,QAAA,EAAA,MAAA,GAAA,SAAA,GAAA,SAAA;EAAe,IAAA,EAAA,aAAA,GAAA,MAAA,GAAA,YAAA;EAGtB,WAAQ,EAAA,MAAA;EAgDR,KAAA,EAAA,OAAY;EAIT,IAAA,EAAA,OAAA;EACL,OAAA,EAAA,OAAA;EACA,QAAA,EAAA,OAAA;EACR,WAAA,EAAA,MAAA,GAAA,OAAA;EAAe,eAAA,EAAA,MAAA,GAAA,OAAA;EAyCF,UAAA,EAAA,OAAA;EACL,kBAAA,EAAA,OAAA;EACA,SAAA,EAAA,MAAA;EACR,gBAAA,EAAA,MAAA;EAAe,cAAA,EAAA,MAAA;EAoDI,EAAA,EAAA,OAAA;;AAGP,cA1GF,WAAA,YAAuB,gBA0GrB,CAAA;EAAA,cAAA,EAAA,MAAA;;AAqCO,iBA3IN,mBAAA,CA2IoB,OAAA,EA1IzB,gBA0IyB,EAAA,OAAA,CAAA,EAzIzB,0BAyIyB,CAAA,EAxIjC,eAwIiC,CAAA,GAAA,CAAA;AACzB,iBAhGK,uBAAA,CAgGL,OAAA,EA/FA,gBA+FA,EAAA,OAAA,CAAA,EA9FA,0BA8FA,CAAA,EA7FR,eA6FQ,CAAA,GAAA,CAAA;;;;;;;;;;;;iBAzCW,UAAA,UACX,iDAEI,QAAA;;;;;;;;;;;;iBAqCO,cAAA,UACX,iDAEI,QAAA"}
|
package/dist/helpers/reflect.mjs
CHANGED
|
@@ -207,17 +207,27 @@ createSecretsReflection.__type = [
|
|
|
207
207
|
"createSecretsReflection",
|
|
208
208
|
"Pn!2\"n#2$>%P\"7&/'"
|
|
209
209
|
];
|
|
210
|
+
/**
|
|
211
|
+
* Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.
|
|
212
|
+
*
|
|
213
|
+
* @remarks
|
|
214
|
+
* The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
215
|
+
*
|
|
216
|
+
* @param context - The plugin context
|
|
217
|
+
* @param file - The file path to reflect the environment configuration type definition from
|
|
218
|
+
* @param name - The name of the type definition to reflect the environment configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
219
|
+
* @returns A reflection of the environment configuration type definition, merged with the default environment configuration reflection and the currently used environment configuration reflection. The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.
|
|
220
|
+
*/
|
|
210
221
|
async function reflectEnv(context, file, name) {
|
|
211
222
|
let config;
|
|
212
223
|
if (file) config = resolveClassType(await reflectType(context, {
|
|
213
224
|
file: !isParentPath(file, context.workspaceConfig.workspaceRoot) ? joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
214
225
|
name
|
|
215
226
|
}));
|
|
216
|
-
const defaultConfigType = await reflectType(context, await getEnvDefaultTypeDefinition(context));
|
|
217
227
|
return mergeEnvReflections(context, [
|
|
218
228
|
await readEnvTypeReflection(context, "env"),
|
|
219
229
|
config,
|
|
220
|
-
resolveClassType(
|
|
230
|
+
resolveClassType(await reflectType(context, await getEnvDefaultTypeDefinition(context)))
|
|
221
231
|
].filter(Boolean));
|
|
222
232
|
}
|
|
223
233
|
reflectEnv.__type = [
|
|
@@ -226,19 +236,30 @@ reflectEnv.__type = [
|
|
|
226
236
|
"file",
|
|
227
237
|
"name",
|
|
228
238
|
"reflectEnv",
|
|
229
|
-
"
|
|
239
|
+
"Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.",
|
|
240
|
+
"Pn!2\"&2#8&2$8\"/%?&"
|
|
230
241
|
];
|
|
242
|
+
/**
|
|
243
|
+
* Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.
|
|
244
|
+
*
|
|
245
|
+
* @remarks
|
|
246
|
+
* The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
247
|
+
*
|
|
248
|
+
* @param context - The plugin context
|
|
249
|
+
* @param file - The file path to reflect the secrets configuration type definition from
|
|
250
|
+
* @param name - The name of the type definition to reflect the secrets configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.
|
|
251
|
+
* @returns A reflection of the secrets configuration type definition, merged with the default secrets configuration reflection and the currently used secrets configuration reflection. The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.
|
|
252
|
+
*/
|
|
231
253
|
async function reflectSecrets(context, file, name) {
|
|
232
254
|
let config;
|
|
233
255
|
if (file) config = resolveClassType(await reflectType(context, {
|
|
234
256
|
file: !isParentPath(file, context.workspaceConfig.workspaceRoot) ? joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
235
257
|
name
|
|
236
258
|
}));
|
|
237
|
-
const defaultSecretsType = await reflectType(context, await getSecretsDefaultTypeDefinition(context));
|
|
238
259
|
return mergeSecretsReflections(context, [
|
|
239
260
|
await readSecretsReflection(context),
|
|
240
261
|
config,
|
|
241
|
-
resolveClassType(
|
|
262
|
+
resolveClassType(await reflectType(context, await getSecretsDefaultTypeDefinition(context)))
|
|
242
263
|
].filter(Boolean));
|
|
243
264
|
}
|
|
244
265
|
reflectSecrets.__type = [
|
|
@@ -247,7 +268,8 @@ reflectSecrets.__type = [
|
|
|
247
268
|
"file",
|
|
248
269
|
"name",
|
|
249
270
|
"reflectSecrets",
|
|
250
|
-
"
|
|
271
|
+
"Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.",
|
|
272
|
+
"Pn!2\"&2#8&2$8\"/%?&"
|
|
251
273
|
];
|
|
252
274
|
|
|
253
275
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reflect.mjs","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { reflectType } from \"@powerlines/deepkit/reflect-type\";\nimport {\n merge,\n ReflectionClass,\n ReflectionKind,\n resolveClassType,\n TypeClass,\n TypeObjectLiteral\n} from \"@powerlines/deepkit/vendor/type\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { EnvPluginContext } from \"../types/plugin\";\nimport { EnvInterface, SecretsInterface } from \"../types/runtime\";\nimport {\n getEnvDefaultTypeDefinition,\n getSecretsDefaultTypeDefinition,\n readEnvTypeReflection,\n readSecretsReflection\n} from \"./persistence\";\n\nexport function mergeEnvReflections(\n context: EnvPluginContext,\n reflections: ReflectionClass<any>[]\n): ReflectionClass<any> {\n const reflection = createEnvReflection(context, {\n type: merge(reflections.map(reflection => reflection.type))\n });\n\n return reflection;\n}\n\nexport function mergeSecretsReflections(\n context: EnvPluginContext,\n reflections: ReflectionClass<any>[]\n): ReflectionClass<any> {\n const reflection = createSecretsReflection(context, {\n type: merge(reflections.map(reflection => reflection.type))\n });\n\n return reflection;\n}\n\nexport interface CreateEnvReflectionOptions {\n type?: TypeObjectLiteral | TypeClass;\n superReflection?: ReflectionClass<any>;\n}\n\nexport class BaseEnv implements EnvInterface {\n APP_NAME!: string;\n\n APP_VERSION!: string;\n\n BUILD_ID!: string;\n\n BUILD_TIMESTAMP!: string;\n\n BUILD_CHECKSUM!: string;\n\n RELEASE_ID!: string;\n\n RELEASE_TAG!: string;\n\n ORGANIZATION!: string;\n\n PLATFORM: \"node\" | \"browser\" | \"neutral\" = \"neutral\";\n\n MODE: \"development\" | \"test\" | \"production\" = \"production\";\n\n ENVIRONMENT!: string;\n\n DEBUG: boolean = false;\n\n TEST: boolean = false;\n\n MINIMAL: boolean = false;\n\n NO_COLOR: boolean = false;\n\n FORCE_COLOR: number | boolean = false;\n\n FORCE_HYPERLINK: number | boolean = false;\n\n STACKTRACE: boolean = false;\n\n INCLUDE_ERROR_DATA: boolean = false;\n\n ERROR_URL!: string;\n\n DEFAULT_TIMEZONE!: string;\n\n DEFAULT_LOCALE!: string;\n\n CI: boolean = false;\n}\n\nexport class BaseSecrets implements SecretsInterface {\n ENCRYPTION_KEY!: string;\n}\n\nexport function createEnvReflection(\n context: EnvPluginContext,\n options: CreateEnvReflectionOptions = {}\n): ReflectionClass<any> {\n const parent =\n options.superReflection ??\n new ReflectionClass({\n kind: ReflectionKind.class,\n description: `The base environment configuration definition for the ${titleCase(\n context.config.name\n )} project.`,\n classType: BaseEnv,\n types: [],\n implements: [\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"EnvInterface\",\n description: `The environment configuration interface definition for the ${titleCase(\n context.config.name\n )} project.`,\n types: []\n }\n ]\n });\n parent.name = \"Env\";\n\n const result = new ReflectionClass(\n options.type ?? {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Env\",\n description: `A schema describing the list of available environment variables that can be used by the ${\n context.config.name\n ? `${titleCase(context.config.name)} application`\n : \"application\"\n }.`,\n types: []\n },\n parent\n );\n result.name = \"Env\";\n\n return result;\n}\n\nexport function createSecretsReflection(\n context: EnvPluginContext,\n options: CreateEnvReflectionOptions = {}\n): ReflectionClass<any> {\n const parent =\n options.superReflection ??\n new ReflectionClass({\n kind: ReflectionKind.class,\n description: `The base secrets configuration definition for the ${titleCase(\n context.config.name\n )} project.`,\n classType: BaseSecrets,\n types: [],\n implements: [\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"SecretsInterface\",\n description: `The secrets configuration interface definition for the ${titleCase(\n context.config.name\n )} project.`,\n types: []\n }\n ]\n });\n parent.name = \"Secrets\";\n\n const result = new ReflectionClass(\n options.type ?? {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Secrets\",\n description: `A schema describing the list of available environment secrets that can be used by the ${\n context.config.name\n ? `${titleCase(context.config.name)} application`\n : \"application\"\n }.`,\n types: []\n },\n parent\n );\n result.name = \"Secrets\";\n\n return result;\n}\n\nexport async function reflectEnv(\n context: EnvPluginContext,\n file?: string,\n name?: string\n) {\n let config: ReflectionClass<any> | undefined;\n if (file) {\n const configType = await reflectType(context, {\n file: !isParentPath(file, context.workspaceConfig.workspaceRoot)\n ? joinPaths(context.workspaceConfig.workspaceRoot, file)\n : file,\n name\n });\n\n config = resolveClassType(configType);\n }\n\n const defaultConfigType = await reflectType(\n context,\n await getEnvDefaultTypeDefinition(context)\n );\n\n const reflection = await readEnvTypeReflection(context, \"env\");\n\n // const defaultConfig = resolveClassType(defaultConfigType);\n // if (config) {\n // defaultConfig.getProperties().forEach(prop => {\n // if (!config!.hasProperty(prop.getName())) {\n // config!.addProperty(prop.property);\n // }\n // });\n // } else {\n // config = defaultConfig;\n // }\n\n return mergeEnvReflections(\n context,\n [reflection, config, resolveClassType(defaultConfigType)].filter(\n Boolean\n ) as ReflectionClass<any>[]\n );\n}\n\nexport async function reflectSecrets(\n context: EnvPluginContext,\n file?: string,\n name?: string\n) {\n let config: ReflectionClass<any> | undefined;\n if (file) {\n const configType = await reflectType(context, {\n file: !isParentPath(file, context.workspaceConfig.workspaceRoot)\n ? joinPaths(context.workspaceConfig.workspaceRoot, file)\n : file,\n name\n });\n\n config = resolveClassType(configType);\n }\n\n const defaultSecretsType = await reflectType(\n context,\n await getSecretsDefaultTypeDefinition(context)\n );\n\n const reflection = await readSecretsReflection(context);\n\n // const defaultConfig = resolveClassType(defaultConfigType);\n // if (config) {\n // defaultConfig.getProperties().forEach(prop => {\n // if (!config!.hasProperty(prop.getName())) {\n // config!.addProperty(prop.property);\n // }\n // });\n // } else {\n // config = defaultConfig;\n // }\n\n return mergeSecretsReflections(\n context,\n [reflection, config, resolveClassType(defaultSecretsType)].filter(\n Boolean\n ) as ReflectionClass<any>[]\n );\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"reflect.mjs","names":[],"sources":["../../src/helpers/reflect.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { reflectType } from \"@powerlines/deepkit/reflect-type\";\nimport {\n merge,\n ReflectionClass,\n ReflectionKind,\n resolveClassType,\n TypeClass,\n TypeObjectLiteral\n} from \"@powerlines/deepkit/vendor/type\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { EnvPluginContext } from \"../types/plugin\";\nimport { EnvInterface, SecretsInterface } from \"../types/runtime\";\nimport {\n getEnvDefaultTypeDefinition,\n getSecretsDefaultTypeDefinition,\n readEnvTypeReflection,\n readSecretsReflection\n} from \"./persistence\";\n\nexport function mergeEnvReflections(\n context: EnvPluginContext,\n reflections: ReflectionClass<any>[]\n): ReflectionClass<any> {\n const reflection = createEnvReflection(context, {\n type: merge(reflections.map(reflection => reflection.type))\n });\n\n return reflection;\n}\n\nexport function mergeSecretsReflections(\n context: EnvPluginContext,\n reflections: ReflectionClass<any>[]\n): ReflectionClass<any> {\n const reflection = createSecretsReflection(context, {\n type: merge(reflections.map(reflection => reflection.type))\n });\n\n return reflection;\n}\n\nexport interface CreateEnvReflectionOptions {\n type?: TypeObjectLiteral | TypeClass;\n superReflection?: ReflectionClass<any>;\n}\n\nexport class BaseEnv implements EnvInterface {\n APP_NAME!: string;\n\n APP_VERSION!: string;\n\n BUILD_ID!: string;\n\n BUILD_TIMESTAMP!: string;\n\n BUILD_CHECKSUM!: string;\n\n RELEASE_ID!: string;\n\n RELEASE_TAG!: string;\n\n ORGANIZATION!: string;\n\n PLATFORM: \"node\" | \"browser\" | \"neutral\" = \"neutral\";\n\n MODE: \"development\" | \"test\" | \"production\" = \"production\";\n\n ENVIRONMENT!: string;\n\n DEBUG: boolean = false;\n\n TEST: boolean = false;\n\n MINIMAL: boolean = false;\n\n NO_COLOR: boolean = false;\n\n FORCE_COLOR: number | boolean = false;\n\n FORCE_HYPERLINK: number | boolean = false;\n\n STACKTRACE: boolean = false;\n\n INCLUDE_ERROR_DATA: boolean = false;\n\n ERROR_URL!: string;\n\n DEFAULT_TIMEZONE!: string;\n\n DEFAULT_LOCALE!: string;\n\n CI: boolean = false;\n}\n\nexport class BaseSecrets implements SecretsInterface {\n ENCRYPTION_KEY!: string;\n}\n\nexport function createEnvReflection(\n context: EnvPluginContext,\n options: CreateEnvReflectionOptions = {}\n): ReflectionClass<any> {\n const parent =\n options.superReflection ??\n new ReflectionClass({\n kind: ReflectionKind.class,\n description: `The base environment configuration definition for the ${titleCase(\n context.config.name\n )} project.`,\n classType: BaseEnv,\n types: [],\n implements: [\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"EnvInterface\",\n description: `The environment configuration interface definition for the ${titleCase(\n context.config.name\n )} project.`,\n types: []\n }\n ]\n });\n parent.name = \"Env\";\n\n const result = new ReflectionClass(\n options.type ?? {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Env\",\n description: `A schema describing the list of available environment variables that can be used by the ${\n context.config.name\n ? `${titleCase(context.config.name)} application`\n : \"application\"\n }.`,\n types: []\n },\n parent\n );\n result.name = \"Env\";\n\n return result;\n}\n\nexport function createSecretsReflection(\n context: EnvPluginContext,\n options: CreateEnvReflectionOptions = {}\n): ReflectionClass<any> {\n const parent =\n options.superReflection ??\n new ReflectionClass({\n kind: ReflectionKind.class,\n description: `The base secrets configuration definition for the ${titleCase(\n context.config.name\n )} project.`,\n classType: BaseSecrets,\n types: [],\n implements: [\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"SecretsInterface\",\n description: `The secrets configuration interface definition for the ${titleCase(\n context.config.name\n )} project.`,\n types: []\n }\n ]\n });\n parent.name = \"Secrets\";\n\n const result = new ReflectionClass(\n options.type ?? {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Secrets\",\n description: `A schema describing the list of available environment secrets that can be used by the ${\n context.config.name\n ? `${titleCase(context.config.name)} application`\n : \"application\"\n }.`,\n types: []\n },\n parent\n );\n result.name = \"Secrets\";\n\n return result;\n}\n\n/**\n * Reflects the environment configuration type definition from the provided file and name, and merges it with the default environment configuration reflection and the currently used environment configuration reflection.\n *\n * @remarks\n * The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.\n *\n * @param context - The plugin context\n * @param file - The file path to reflect the environment configuration type definition from\n * @param name - The name of the type definition to reflect the environment configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.\n * @returns A reflection of the environment configuration type definition, merged with the default environment configuration reflection and the currently used environment configuration reflection. The resulting reflection will contain the structure of the expected environment variables as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default environment configuration reflection.\n */\nexport async function reflectEnv(\n context: EnvPluginContext,\n file?: string,\n name?: string\n) {\n let config: ReflectionClass<any> | undefined;\n if (file) {\n const configType = await reflectType(context, {\n file: !isParentPath(file, context.workspaceConfig.workspaceRoot)\n ? joinPaths(context.workspaceConfig.workspaceRoot, file)\n : file,\n name\n });\n\n config = resolveClassType(configType);\n }\n\n return mergeEnvReflections(\n context,\n [\n await readEnvTypeReflection(context, \"env\"),\n config,\n resolveClassType(\n await reflectType(context, await getEnvDefaultTypeDefinition(context))\n )\n ].filter(Boolean) as ReflectionClass<any>[]\n );\n}\n\n/**\n * Reflects the secrets configuration type definition from the provided file and name, and merges it with the default secrets configuration reflection and the currently used secrets configuration reflection.\n *\n * @remarks\n * The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.\n *\n * @param context - The plugin context\n * @param file - The file path to reflect the secrets configuration type definition from\n * @param name - The name of the type definition to reflect the secrets configuration from, if the file contains multiple type definitions. If not provided, the first type definition found in the file will be used.\n * @returns A reflection of the secrets configuration type definition, merged with the default secrets configuration reflection and the currently used secrets configuration reflection. The resulting reflection will contain the structure of the expected environment secrets as defined by the type definitions provided in the plugin configuration, as well as any additional properties that are currently used in the source code and defined in the default secrets configuration reflection.\n */\nexport async function reflectSecrets(\n context: EnvPluginContext,\n file?: string,\n name?: string\n) {\n let config: ReflectionClass<any> | undefined;\n if (file) {\n const configType = await reflectType(context, {\n file: !isParentPath(file, context.workspaceConfig.workspaceRoot)\n ? joinPaths(context.workspaceConfig.workspaceRoot, file)\n : file,\n name\n });\n\n config = resolveClassType(configType);\n }\n\n return mergeSecretsReflections(\n context,\n [\n await readSecretsReflection(context),\n config,\n resolveClassType(\n await reflectType(\n context,\n await getSecretsDefaultTypeDefinition(context)\n )\n )\n ].filter(Boolean) as ReflectionClass<any>[]\n );\n}\n"],"mappings":"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"}
|
package/dist/index.cjs
CHANGED
|
@@ -4,7 +4,6 @@ const require_types_runtime = require('./types/runtime.cjs');
|
|
|
4
4
|
const require_types_plugin = require('./types/plugin.cjs');
|
|
5
5
|
require('./types/index.cjs');
|
|
6
6
|
const require_join_paths = require('./node_modules/.pnpm/@stryke_path@0.26.6/node_modules/@stryke/path/dist/join-paths.cjs');
|
|
7
|
-
const require_is_parent_path = require('./node_modules/.pnpm/@stryke_path@0.26.6/node_modules/@stryke/path/dist/is-parent-path.cjs');
|
|
8
7
|
const require_helpers_reflect = require('./helpers/reflect.cjs');
|
|
9
8
|
const require_helpers_persistence = require('./helpers/persistence.cjs');
|
|
10
9
|
const require_helpers_template_helpers = require('./helpers/template-helpers.cjs');
|
|
@@ -60,12 +59,14 @@ const plugin = (options = {}) => {
|
|
|
60
59
|
else {
|
|
61
60
|
this.warn("The `env.types` configuration parameter was not provided. Please ensure this is expected.");
|
|
62
61
|
const envDefaultTypeDefinition = await require_helpers_persistence.getEnvDefaultTypeDefinition(this);
|
|
63
|
-
|
|
62
|
+
const file = await this.fs.resolve(envDefaultTypeDefinition.file);
|
|
63
|
+
if (file) config.env.types = require_parse_type_definition.parseTypeDefinition(`${file}#${envDefaultTypeDefinition.name}`);
|
|
64
64
|
}
|
|
65
65
|
if (config.env.secrets) config.env.secrets = require_parse_type_definition.parseTypeDefinition(config.env.secrets);
|
|
66
66
|
else {
|
|
67
67
|
const secretsDefaultTypeDefinition = await require_helpers_persistence.getSecretsDefaultTypeDefinition(this);
|
|
68
|
-
|
|
68
|
+
const file = await this.fs.resolve(secretsDefaultTypeDefinition.file);
|
|
69
|
+
if (file) config.env.secrets = require_parse_type_definition.parseTypeDefinition(`${file}#${secretsDefaultTypeDefinition.name}`);
|
|
69
70
|
}
|
|
70
71
|
config.env.prefix = require_to_array.toArray(config.env.prefix ?? []).reduce((ret, prefix) => {
|
|
71
72
|
const formattedPrefix = (0, __stryke_string_format_constant_case.constantCase)(prefix);
|
|
@@ -105,10 +106,10 @@ const plugin = (options = {}) => {
|
|
|
105
106
|
if ((0, __stryke_fs_exists.existsSync)(require_helpers_persistence.getEnvReflectionsPath(this, "secrets"))) this.env.used.secrets = await require_helpers_persistence.readSecretsReflection(this);
|
|
106
107
|
} else {
|
|
107
108
|
this.debug(`Starting environment configuration reflection initialization.`);
|
|
108
|
-
this.env.types.env = await require_helpers_reflect.reflectEnv(this, this.config.env.types?.file
|
|
109
|
+
this.env.types.env = await require_helpers_reflect.reflectEnv(this, this.config.env.types?.file, this.config.env.types?.name);
|
|
109
110
|
if (!this.env.types.env) throw new Error("Failed to find the environment configuration type reflection in the context.");
|
|
110
111
|
await require_helpers_persistence.writeEnvTypeReflection(this, this.env.types.env, "env");
|
|
111
|
-
this.env.types.secrets = await require_helpers_reflect.reflectSecrets(this, this.config.env.secrets?.file
|
|
112
|
+
this.env.types.secrets = await require_helpers_reflect.reflectSecrets(this, this.config.env.secrets?.file, this.config.env.secrets?.name);
|
|
112
113
|
if (!this.env.types.secrets) throw new Error("Failed to find the secrets configuration type reflection in the context.");
|
|
113
114
|
await require_helpers_persistence.writeEnvTypeReflection(this, this.env.types.secrets, "secrets");
|
|
114
115
|
this.debug(`Resolved ${this.env.types.env.getProperties().length ?? 0} environment configuration parameters and ${this.env.types.secrets?.getProperties().length ?? 0} secret configuration parameters`);
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;cAmEa,0BAA2B,mBAAmB,4BAChD,qBA6UJ,OAAO"}
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;cAmEa,0BAA2B,mBAAmB,4BAChD,qBA6UJ,OAAO"}
|
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,6 @@ import { __ΩEnvInterface, __ΩSecretsInterface } from "./types/runtime.mjs";
|
|
|
2
2
|
import { __ΩEnvPluginContext, __ΩEnvPluginOptions, __ΩEnvPluginResolvedConfig, __ΩEnvPluginUserConfig, __ΩEnvType } from "./types/plugin.mjs";
|
|
3
3
|
import "./types/index.mjs";
|
|
4
4
|
import { joinPaths } from "./node_modules/.pnpm/@stryke_path@0.26.6/node_modules/@stryke/path/dist/join-paths.mjs";
|
|
5
|
-
import { isParentPath } from "./node_modules/.pnpm/@stryke_path@0.26.6/node_modules/@stryke/path/dist/is-parent-path.mjs";
|
|
6
5
|
import { BaseEnv, BaseSecrets, __ΩCreateEnvReflectionOptions, createEnvReflection, createSecretsReflection, mergeEnvReflections, mergeSecretsReflections, reflectEnv, reflectSecrets } from "./helpers/reflect.mjs";
|
|
7
6
|
import { getEnvDefaultTypeDefinition, getEnvReflectionsPath, getEnvTypeReflectionsPath, getSecretsDefaultTypeDefinition, readEnvReflection, readEnvTypeReflection, readSecretsReflection, resolveRuntimeTypeFile, writeEnvReflection, writeEnvReflectionSync, writeEnvTypeReflection } from "./helpers/persistence.mjs";
|
|
8
7
|
import { createTemplateReflection } from "./helpers/template-helpers.mjs";
|
|
@@ -55,12 +54,14 @@ const plugin = (options = {}) => {
|
|
|
55
54
|
else {
|
|
56
55
|
this.warn("The `env.types` configuration parameter was not provided. Please ensure this is expected.");
|
|
57
56
|
const envDefaultTypeDefinition = await getEnvDefaultTypeDefinition(this);
|
|
58
|
-
|
|
57
|
+
const file = await this.fs.resolve(envDefaultTypeDefinition.file);
|
|
58
|
+
if (file) config.env.types = parseTypeDefinition(`${file}#${envDefaultTypeDefinition.name}`);
|
|
59
59
|
}
|
|
60
60
|
if (config.env.secrets) config.env.secrets = parseTypeDefinition(config.env.secrets);
|
|
61
61
|
else {
|
|
62
62
|
const secretsDefaultTypeDefinition = await getSecretsDefaultTypeDefinition(this);
|
|
63
|
-
|
|
63
|
+
const file = await this.fs.resolve(secretsDefaultTypeDefinition.file);
|
|
64
|
+
if (file) config.env.secrets = parseTypeDefinition(`${file}#${secretsDefaultTypeDefinition.name}`);
|
|
64
65
|
}
|
|
65
66
|
config.env.prefix = toArray(config.env.prefix ?? []).reduce((ret, prefix) => {
|
|
66
67
|
const formattedPrefix = constantCase(prefix);
|
|
@@ -100,10 +101,10 @@ const plugin = (options = {}) => {
|
|
|
100
101
|
if (existsSync(getEnvReflectionsPath(this, "secrets"))) this.env.used.secrets = await readSecretsReflection(this);
|
|
101
102
|
} else {
|
|
102
103
|
this.debug(`Starting environment configuration reflection initialization.`);
|
|
103
|
-
this.env.types.env = await reflectEnv(this, this.config.env.types?.file
|
|
104
|
+
this.env.types.env = await reflectEnv(this, this.config.env.types?.file, this.config.env.types?.name);
|
|
104
105
|
if (!this.env.types.env) throw new Error("Failed to find the environment configuration type reflection in the context.");
|
|
105
106
|
await writeEnvTypeReflection(this, this.env.types.env, "env");
|
|
106
|
-
this.env.types.secrets = await reflectSecrets(this, this.config.env.secrets?.file
|
|
107
|
+
this.env.types.secrets = await reflectSecrets(this, this.config.env.secrets?.file, this.config.env.secrets?.name);
|
|
107
108
|
if (!this.env.types.secrets) throw new Error("Failed to find the secrets configuration type reflection in the context.");
|
|
108
109
|
await writeEnvTypeReflection(this, this.env.types.secrets, "secrets");
|
|
109
110
|
this.debug(`Resolved ${this.env.types.env.getProperties().length ?? 0} environment configuration parameters and ${this.env.types.secrets?.getProperties().length ?? 0} secret configuration parameters`);
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["ReflectionClass","ReflectionKind","alloy","render","automd","babel","parseTypeDefinition","toArray","ENV_PREFIXES","existsSync","isParentPath","joinPaths","constantCase","defu","envBabelPlugin","EnvDocsFile","EnvBuiltin","env","getDocsOutputPath","loadEnv","getEnvDefaultTypeDefinition","getEnvReflectionsPath","getEnvTypeReflectionsPath","getSecretsDefaultTypeDefinition","readEnvReflection","readEnvTypeReflection","readSecretsReflection","writeEnvReflection","writeEnvTypeReflection","reflectEnv","reflectSecrets","plugin","options","name","config","debug","types","validate","inject","prefix","transform","plugins","warn","envDefaultTypeDefinition","file","secrets","secretsDefaultTypeDefinition","reduce","ret","formattedPrefix","includes","push","framework","filter","Boolean","replace","configResolved","parsed","used","injected","command","skipCache","persistedMeta","checksum","meta","workspaceConfig","workspaceRoot","projectRoot","undefined","Error","getProperties","length","envWithAlias","prop","getAlias","Object","entries","forEach","key","value","unprefixedKey","startsWith","slice","aliasKey","find","reverse","hasProperty","getProperty","setDefaultValue","kind","objectLiteral","typeName","description","prepare","_self$","result","_$createComponent","defaultConfig","reflection","order","handler","trace","docs","levelOffset","buildEnd","reflectionPath","generators","vite","envPrefix"],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n ReflectionClass,\n ReflectionKind\n} from \"@powerlines/deepkit/vendor/type\";\nimport alloy from \"@powerlines/plugin-alloy\";\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport automd from \"@powerlines/plugin-automd\";\nimport babel from \"@powerlines/plugin-babel\";\nimport { parseTypeDefinition } from \"@stryke/convert/parse-type-definition\";\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { ENV_PREFIXES } from \"@stryke/env/types\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { constantCase } from \"@stryke/string-format/constant-case\";\nimport {\n TypeDefinition,\n TypeDefinitionParameter\n} from \"@stryke/types/configuration\";\nimport defu from \"defu\";\nimport { Plugin } from \"powerlines/types/plugin\";\nimport type { UserConfig as ViteUserConfig } from \"vite\";\nimport { envBabelPlugin } from \"./babel/plugin\";\nimport { EnvDocsFile } from \"./components/docs\";\nimport { EnvBuiltin } from \"./components/env\";\nimport { env } from \"./helpers/automd-generator\";\nimport { getDocsOutputPath } from \"./helpers/docs-helper\";\nimport { loadEnv } from \"./helpers/load\";\nimport {\n getEnvDefaultTypeDefinition,\n getEnvReflectionsPath,\n getEnvTypeReflectionsPath,\n getSecretsDefaultTypeDefinition,\n readEnvReflection,\n readEnvTypeReflection,\n readSecretsReflection,\n writeEnvReflection,\n writeEnvTypeReflection\n} from \"./helpers/persistence\";\nimport { reflectEnv, reflectSecrets } from \"./helpers/reflect\";\nimport { EnvPluginContext, EnvPluginOptions } from \"./types/plugin\";\n\nexport * from \"./babel\";\nexport * from \"./components\";\nexport * from \"./helpers\";\nexport * from \"./types\";\n\n/**\n * A Powerlines plugin to inject environment variables into the source code.\n */\nexport const plugin = <TContext extends EnvPluginContext = EnvPluginContext>(\n options: EnvPluginOptions = {}\n) => {\n return [\n alloy(options.alloy),\n babel(options.babel),\n {\n name: \"env\",\n async config() {\n this.debug(\n \"Providing default configuration for the Powerlines `env` build plugin.\"\n );\n\n const config = {\n env: defu(options, {\n types: {} as TypeDefinitionParameter,\n validate: false,\n inject: false,\n prefix: []\n }),\n transform: {\n babel: {\n plugins: [envBabelPlugin]\n }\n }\n };\n\n if (config.env.types) {\n config.env.types = parseTypeDefinition(\n config.env.types\n ) as TypeDefinition;\n } else {\n this.warn(\n \"The `env.types` configuration parameter was not provided. Please ensure this is expected.\"\n );\n\n const envDefaultTypeDefinition =\n await getEnvDefaultTypeDefinition(this);\n config.env.types = parseTypeDefinition(\n `${envDefaultTypeDefinition.file}#${envDefaultTypeDefinition.name}`\n ) as TypeDefinition;\n }\n\n if (config.env.secrets) {\n config.env.secrets = parseTypeDefinition(\n config.env.secrets\n ) as TypeDefinition;\n } else {\n const secretsDefaultTypeDefinition =\n await getSecretsDefaultTypeDefinition(this);\n config.env.secrets = parseTypeDefinition(\n `${secretsDefaultTypeDefinition.file}#${\n secretsDefaultTypeDefinition.name\n }`\n ) as TypeDefinition;\n }\n\n config.env.prefix = toArray(\n (config.env.prefix ?? []) as string[]\n ).reduce(\n (ret: string[], prefix: string) => {\n const formattedPrefix = constantCase(prefix);\n if (!ret.includes(formattedPrefix)) {\n ret.push(formattedPrefix);\n }\n\n return ret;\n },\n [\n ...ENV_PREFIXES,\n \"POWERLINES_\",\n this.config.framework &&\n this.config.framework !== \"powerlines\" &&\n `${constantCase(this.config.framework)}_`\n ].filter(Boolean) as string[]\n );\n\n config.env.prefix = toArray(config.env.prefix).reduce((ret, prefix) => {\n if (!ret.includes(prefix.replace(/_$/g, \"\"))) {\n ret.push(prefix.replace(/_$/g, \"\"));\n }\n return ret;\n }, [] as string[]);\n\n return config;\n },\n async configResolved() {\n this.debug(\n `Environment plugin configuration has been resolved for the Powerlines project.`\n );\n\n this.env = defu(\n {\n parsed: await loadEnv(this, this.config.env),\n validate: !!this.config.env.validate,\n inject: !!this.config.env.inject\n },\n this.env ?? {},\n {\n types: {\n env: {}\n },\n used: {\n env: {},\n secrets: {}\n },\n parsed: {},\n injected: {}\n }\n ) as EnvPluginContext[\"env\"];\n\n if (\n this.config.command !== \"prepare\" &&\n !this.config.skipCache &&\n this.persistedMeta?.checksum === this.meta.checksum &&\n existsSync(getEnvTypeReflectionsPath(this, \"env\"))\n ) {\n this.debug(\n `Skipping reflection initialization as the meta checksum has not changed.`\n );\n\n this.env.types.env = await readEnvTypeReflection(this, \"env\");\n\n if (existsSync(getEnvReflectionsPath(this, \"env\"))) {\n this.env.used.env = await readEnvReflection(this);\n }\n\n if (existsSync(getEnvTypeReflectionsPath(this, \"secrets\"))) {\n this.env.types.secrets = await readEnvTypeReflection(\n this,\n \"secrets\"\n );\n }\n\n if (existsSync(getEnvReflectionsPath(this, \"secrets\"))) {\n this.env.used.secrets = await readSecretsReflection(this);\n }\n } else {\n this.debug(\n `Starting environment configuration reflection initialization.`\n );\n\n this.env.types.env = await reflectEnv(\n this,\n this.config.env.types?.file\n ? isParentPath(\n this.config.env.types?.file,\n this.workspaceConfig.workspaceRoot\n )\n ? this.config.env.types?.file\n : joinPaths(\n this.config.projectRoot,\n this.config.env.types?.file\n )\n : undefined,\n this.config.env.types?.name\n );\n if (!this.env.types.env) {\n throw new Error(\n \"Failed to find the environment configuration type reflection in the context.\"\n );\n }\n\n await writeEnvTypeReflection(this, this.env.types.env, \"env\");\n\n this.env.types.secrets = await reflectSecrets(\n this,\n this.config.env.secrets?.file\n ? isParentPath(\n this.config.env.secrets?.file,\n this.workspaceConfig.workspaceRoot\n )\n ? this.config.env.secrets?.file\n : joinPaths(\n this.config.projectRoot,\n this.config.env.secrets?.file\n )\n : undefined,\n this.config.env.secrets?.name\n );\n if (!this.env.types.secrets) {\n throw new Error(\n \"Failed to find the secrets configuration type reflection in the context.\"\n );\n }\n\n await writeEnvTypeReflection(this, this.env.types.secrets, \"secrets\");\n\n this.debug(\n `Resolved ${\n this.env.types.env.getProperties().length ?? 0\n } environment configuration parameters and ${\n this.env.types.secrets?.getProperties().length ?? 0\n } secret configuration parameters`\n );\n\n const envWithAlias = this.env.types.env\n .getProperties()\n .filter(prop => prop.getAlias().length > 0);\n\n Object.entries(await loadEnv(this, this.config.env)).forEach(\n ([key, value]) => {\n const unprefixedKey = this.config.env.prefix.reduce(\n (ret, prefix) => {\n if (key.replace(/_$/g, \"\").startsWith(prefix)) {\n return key.replace(/_$/g, \"\").slice(prefix.length);\n }\n return ret;\n },\n key\n );\n\n const aliasKey = envWithAlias.find(prop =>\n prop?.getAlias().reverse().includes(unprefixedKey)\n );\n if (this.env.types.env?.hasProperty(unprefixedKey) || aliasKey) {\n this.env.types.env\n .getProperty(unprefixedKey)\n .setDefaultValue(value);\n }\n }\n );\n\n this.env.used.env = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Env\",\n description: `An object containing the environment configuration parameters used by the ${\n this.config.name\n ? `${this.config.name} application`\n : \"application\"\n }.`,\n types: []\n },\n this.env.types.env\n );\n\n await writeEnvReflection(this, this.env.used.env, \"env\");\n\n if (this.env.types.secrets) {\n await writeEnvTypeReflection(\n this,\n this.env.types.secrets,\n \"secrets\"\n );\n\n this.env.used.secrets = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Secrets\",\n description: `An object containing the secret configuration parameters used by the ${\n this.config.name\n ? `${this.config.name} application`\n : \"application\"\n }.`,\n types: []\n },\n this.env.types.secrets\n );\n await writeEnvReflection(this, this.env.used.secrets, \"secrets\");\n }\n }\n },\n async prepare() {\n this.debug(\n `Preparing the Environment runtime artifacts for the Powerlines project.`\n );\n\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <EnvBuiltin\n defaultConfig={this.config.env.defaultConfig}\n reflection={result}\n />\n );\n },\n transform: {\n order: \"post\",\n async handler() {\n if (this.env.used.env.getProperties().length > 0) {\n this.trace(\n `Persisting used environment configuration reflections to ${getEnvReflectionsPath(\n this,\n \"env\"\n )}.`\n );\n await writeEnvReflection(this, this.env.used.env, \"env\");\n }\n\n if (this.env.used.secrets.getProperties().length > 0) {\n this.trace(\n `Persisting used secret configuration reflections to ${getEnvReflectionsPath(\n this,\n \"secrets\"\n )}.`\n );\n await writeEnvReflection(this, this.env.used.secrets, \"secrets\");\n }\n }\n },\n async docs() {\n this.debug(\n `Documenting environment variables configuration values in \"${joinPaths(\n getDocsOutputPath(this),\n \"env.md\"\n )}\"`\n );\n\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <EnvDocsFile levelOffset={0} reflection={result} />\n );\n },\n async buildEnd() {\n const reflectionPath = getEnvReflectionsPath(this, \"env\");\n\n this.debug(`Writing env reflection types to ${reflectionPath}.`);\n\n await writeEnvReflection(this, this.env.used.env, \"env\");\n }\n },\n {\n name: \"env:automd-generator\",\n config() {\n return {\n automd: defu(options.automd ?? {}, {\n generators: {\n env: env(this)\n }\n })\n };\n }\n },\n {\n name: \"env:vite\",\n vite: {\n configResolved(this: TContext) {\n return {\n envPrefix: this.config?.env?.prefix\n } as ViteUserConfig;\n }\n }\n },\n automd(options.automd)\n ] as Plugin<TContext>[];\n};\n\nexport default plugin;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["ReflectionClass","ReflectionKind","alloy","render","automd","babel","parseTypeDefinition","toArray","ENV_PREFIXES","existsSync","joinPaths","constantCase","defu","envBabelPlugin","EnvDocsFile","EnvBuiltin","env","getDocsOutputPath","loadEnv","getEnvDefaultTypeDefinition","getEnvReflectionsPath","getEnvTypeReflectionsPath","getSecretsDefaultTypeDefinition","readEnvReflection","readEnvTypeReflection","readSecretsReflection","writeEnvReflection","writeEnvTypeReflection","reflectEnv","reflectSecrets","plugin","options","name","config","debug","types","validate","inject","prefix","transform","plugins","warn","envDefaultTypeDefinition","file","fs","resolve","secrets","secretsDefaultTypeDefinition","reduce","ret","formattedPrefix","includes","push","framework","filter","Boolean","replace","configResolved","parsed","used","injected","command","skipCache","persistedMeta","checksum","meta","Error","getProperties","length","envWithAlias","prop","getAlias","Object","entries","forEach","key","value","unprefixedKey","startsWith","slice","aliasKey","find","reverse","hasProperty","getProperty","setDefaultValue","kind","objectLiteral","typeName","description","prepare","_self$","result","_$createComponent","defaultConfig","reflection","order","handler","trace","docs","levelOffset","buildEnd","reflectionPath","generators","vite","envPrefix"],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n ReflectionClass,\n ReflectionKind\n} from \"@powerlines/deepkit/vendor/type\";\nimport alloy from \"@powerlines/plugin-alloy\";\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport automd from \"@powerlines/plugin-automd\";\nimport babel from \"@powerlines/plugin-babel\";\nimport { parseTypeDefinition } from \"@stryke/convert/parse-type-definition\";\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { ENV_PREFIXES } from \"@stryke/env/types\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { constantCase } from \"@stryke/string-format/constant-case\";\nimport {\n TypeDefinition,\n TypeDefinitionParameter\n} from \"@stryke/types/configuration\";\nimport defu from \"defu\";\nimport { Plugin } from \"powerlines/types/plugin\";\nimport type { UserConfig as ViteUserConfig } from \"vite\";\nimport { envBabelPlugin } from \"./babel/plugin\";\nimport { EnvDocsFile } from \"./components/docs\";\nimport { EnvBuiltin } from \"./components/env\";\nimport { env } from \"./helpers/automd-generator\";\nimport { getDocsOutputPath } from \"./helpers/docs-helper\";\nimport { loadEnv } from \"./helpers/load\";\nimport {\n getEnvDefaultTypeDefinition,\n getEnvReflectionsPath,\n getEnvTypeReflectionsPath,\n getSecretsDefaultTypeDefinition,\n readEnvReflection,\n readEnvTypeReflection,\n readSecretsReflection,\n writeEnvReflection,\n writeEnvTypeReflection\n} from \"./helpers/persistence\";\nimport { reflectEnv, reflectSecrets } from \"./helpers/reflect\";\nimport { EnvPluginContext, EnvPluginOptions } from \"./types/plugin\";\n\nexport * from \"./babel\";\nexport * from \"./components\";\nexport * from \"./helpers\";\nexport * from \"./types\";\n\n/**\n * A Powerlines plugin to inject environment variables into the source code.\n */\nexport const plugin = <TContext extends EnvPluginContext = EnvPluginContext>(\n options: EnvPluginOptions = {}\n) => {\n return [\n alloy(options.alloy),\n babel(options.babel),\n {\n name: \"env\",\n async config() {\n this.debug(\n \"Providing default configuration for the Powerlines `env` build plugin.\"\n );\n\n const config = {\n env: defu(options, {\n types: {} as TypeDefinitionParameter,\n validate: false,\n inject: false,\n prefix: []\n }),\n transform: {\n babel: {\n plugins: [envBabelPlugin]\n }\n }\n };\n\n if (config.env.types) {\n config.env.types = parseTypeDefinition(\n config.env.types\n ) as TypeDefinition;\n } else {\n this.warn(\n \"The `env.types` configuration parameter was not provided. Please ensure this is expected.\"\n );\n\n const envDefaultTypeDefinition =\n await getEnvDefaultTypeDefinition(this);\n\n const file = await this.fs.resolve(envDefaultTypeDefinition.file);\n if (file) {\n config.env.types = parseTypeDefinition(\n `${file}#${envDefaultTypeDefinition.name}`\n ) as TypeDefinition;\n }\n }\n\n if (config.env.secrets) {\n config.env.secrets = parseTypeDefinition(\n config.env.secrets\n ) as TypeDefinition;\n } else {\n const secretsDefaultTypeDefinition =\n await getSecretsDefaultTypeDefinition(this);\n\n const file = await this.fs.resolve(secretsDefaultTypeDefinition.file);\n if (file) {\n config.env.secrets = parseTypeDefinition(\n `${file}#${secretsDefaultTypeDefinition.name}`\n ) as TypeDefinition;\n }\n }\n\n config.env.prefix = toArray(\n (config.env.prefix ?? []) as string[]\n ).reduce(\n (ret: string[], prefix: string) => {\n const formattedPrefix = constantCase(prefix);\n if (!ret.includes(formattedPrefix)) {\n ret.push(formattedPrefix);\n }\n\n return ret;\n },\n [\n ...ENV_PREFIXES,\n \"POWERLINES_\",\n this.config.framework &&\n this.config.framework !== \"powerlines\" &&\n `${constantCase(this.config.framework)}_`\n ].filter(Boolean) as string[]\n );\n\n config.env.prefix = toArray(config.env.prefix).reduce((ret, prefix) => {\n if (!ret.includes(prefix.replace(/_$/g, \"\"))) {\n ret.push(prefix.replace(/_$/g, \"\"));\n }\n return ret;\n }, [] as string[]);\n\n return config;\n },\n async configResolved() {\n this.debug(\n `Environment plugin configuration has been resolved for the Powerlines project.`\n );\n\n this.env = defu(\n {\n parsed: await loadEnv(this, this.config.env),\n validate: !!this.config.env.validate,\n inject: !!this.config.env.inject\n },\n this.env ?? {},\n {\n types: {\n env: {}\n },\n used: {\n env: {},\n secrets: {}\n },\n parsed: {},\n injected: {}\n }\n ) as EnvPluginContext[\"env\"];\n\n if (\n this.config.command !== \"prepare\" &&\n !this.config.skipCache &&\n this.persistedMeta?.checksum === this.meta.checksum &&\n existsSync(getEnvTypeReflectionsPath(this, \"env\"))\n ) {\n this.debug(\n `Skipping reflection initialization as the meta checksum has not changed.`\n );\n\n this.env.types.env = await readEnvTypeReflection(this, \"env\");\n\n if (existsSync(getEnvReflectionsPath(this, \"env\"))) {\n this.env.used.env = await readEnvReflection(this);\n }\n\n if (existsSync(getEnvTypeReflectionsPath(this, \"secrets\"))) {\n this.env.types.secrets = await readEnvTypeReflection(\n this,\n \"secrets\"\n );\n }\n\n if (existsSync(getEnvReflectionsPath(this, \"secrets\"))) {\n this.env.used.secrets = await readSecretsReflection(this);\n }\n } else {\n this.debug(\n `Starting environment configuration reflection initialization.`\n );\n\n this.env.types.env = await reflectEnv(\n this,\n this.config.env.types?.file,\n this.config.env.types?.name\n );\n if (!this.env.types.env) {\n throw new Error(\n \"Failed to find the environment configuration type reflection in the context.\"\n );\n }\n\n await writeEnvTypeReflection(this, this.env.types.env, \"env\");\n\n this.env.types.secrets = await reflectSecrets(\n this,\n this.config.env.secrets?.file,\n this.config.env.secrets?.name\n );\n if (!this.env.types.secrets) {\n throw new Error(\n \"Failed to find the secrets configuration type reflection in the context.\"\n );\n }\n\n await writeEnvTypeReflection(this, this.env.types.secrets, \"secrets\");\n\n this.debug(\n `Resolved ${\n this.env.types.env.getProperties().length ?? 0\n } environment configuration parameters and ${\n this.env.types.secrets?.getProperties().length ?? 0\n } secret configuration parameters`\n );\n\n const envWithAlias = this.env.types.env\n .getProperties()\n .filter(prop => prop.getAlias().length > 0);\n\n Object.entries(await loadEnv(this, this.config.env)).forEach(\n ([key, value]) => {\n const unprefixedKey = this.config.env.prefix.reduce(\n (ret, prefix) => {\n if (key.replace(/_$/g, \"\").startsWith(prefix)) {\n return key.replace(/_$/g, \"\").slice(prefix.length);\n }\n return ret;\n },\n key\n );\n\n const aliasKey = envWithAlias.find(prop =>\n prop?.getAlias().reverse().includes(unprefixedKey)\n );\n if (this.env.types.env?.hasProperty(unprefixedKey) || aliasKey) {\n this.env.types.env\n .getProperty(unprefixedKey)\n .setDefaultValue(value);\n }\n }\n );\n\n this.env.used.env = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Env\",\n description: `An object containing the environment configuration parameters used by the ${\n this.config.name\n ? `${this.config.name} application`\n : \"application\"\n }.`,\n types: []\n },\n this.env.types.env\n );\n\n await writeEnvReflection(this, this.env.used.env, \"env\");\n\n if (this.env.types.secrets) {\n await writeEnvTypeReflection(\n this,\n this.env.types.secrets,\n \"secrets\"\n );\n\n this.env.used.secrets = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n typeName: \"Secrets\",\n description: `An object containing the secret configuration parameters used by the ${\n this.config.name\n ? `${this.config.name} application`\n : \"application\"\n }.`,\n types: []\n },\n this.env.types.secrets\n );\n await writeEnvReflection(this, this.env.used.secrets, \"secrets\");\n }\n }\n },\n async prepare() {\n this.debug(\n `Preparing the Environment runtime artifacts for the Powerlines project.`\n );\n\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <EnvBuiltin\n defaultConfig={this.config.env.defaultConfig}\n reflection={result}\n />\n );\n },\n transform: {\n order: \"post\",\n async handler() {\n if (this.env.used.env.getProperties().length > 0) {\n this.trace(\n `Persisting used environment configuration reflections to ${getEnvReflectionsPath(\n this,\n \"env\"\n )}.`\n );\n await writeEnvReflection(this, this.env.used.env, \"env\");\n }\n\n if (this.env.used.secrets.getProperties().length > 0) {\n this.trace(\n `Persisting used secret configuration reflections to ${getEnvReflectionsPath(\n this,\n \"secrets\"\n )}.`\n );\n await writeEnvReflection(this, this.env.used.secrets, \"secrets\");\n }\n }\n },\n async docs() {\n this.debug(\n `Documenting environment variables configuration values in \"${joinPaths(\n getDocsOutputPath(this),\n \"env.md\"\n )}\"`\n );\n\n const result = await readEnvTypeReflection(this, \"env\");\n\n return render(\n this,\n <EnvDocsFile levelOffset={0} reflection={result} />\n );\n },\n async buildEnd() {\n const reflectionPath = getEnvReflectionsPath(this, \"env\");\n\n this.debug(`Writing env reflection types to ${reflectionPath}.`);\n\n await writeEnvReflection(this, this.env.used.env, \"env\");\n }\n },\n {\n name: \"env:automd-generator\",\n config() {\n return {\n automd: defu(options.automd ?? {}, {\n generators: {\n env: env(this)\n }\n })\n };\n }\n },\n {\n name: \"env:vite\",\n vite: {\n configResolved(this: TContext) {\n return {\n envPrefix: this.config?.env?.prefix\n } as ViteUserConfig;\n }\n }\n },\n automd(options.automd)\n ] as Plugin<TContext>[];\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmEA,MAAa8B,UACXC,UAA4B,EAAE,KAC3B;AACH,QAAO;EACL7B,MAAM6B,QAAQ7B,MAAM;EACpBG,MAAM0B,QAAQ1B,MAAM;EACpB;GACE2B,MAAM;GACN,MAAMC,SAAS;AACb,SAAKC,MACH,yEACD;IAED,MAAMD,SAAS;KACbjB,KAAKJ,KAAKmB,SAAS;MACjBI,OAAO,EAA6B;MACpCC,UAAU;MACVC,QAAQ;MACRC,QAAQ,EAAA;MACT,CAAC;KACFC,WAAW,EACTlC,OAAO,EACLmC,SAAS,CAAC3B,eAAc,EAC1B,EACF;KACD;AAED,QAAIoB,OAAOjB,IAAImB,MACbF,QAAOjB,IAAImB,QAAQ7B,oBACjB2B,OAAOjB,IAAImB,MACM;SACd;AACL,UAAKM,KACH,4FACD;KAED,MAAMC,2BACJ,MAAMvB,4BAA4B,KAAK;KAEzC,MAAMwB,OAAO,MAAM,KAAKC,GAAGC,QAAQH,yBAAyBC,KAAK;AACjE,SAAIA,KACFV,QAAOjB,IAAImB,QAAQ7B,oBACjB,GAAGqC,KAAI,GAAID,yBAAyBV,OACnB;;AAIvB,QAAIC,OAAOjB,IAAI8B,QACbb,QAAOjB,IAAI8B,UAAUxC,oBACnB2B,OAAOjB,IAAI8B,QACM;SACd;KACL,MAAMC,+BACJ,MAAMzB,gCAAgC,KAAK;KAE7C,MAAMqB,OAAO,MAAM,KAAKC,GAAGC,QAAQE,6BAA6BJ,KAAK;AACrE,SAAIA,KACFV,QAAOjB,IAAI8B,UAAUxC,oBACnB,GAAGqC,KAAI,GAAII,6BAA6Bf,OACvB;;AAIvBC,WAAOjB,IAAIsB,SAAS/B,QACjB0B,OAAOjB,IAAIsB,UAAU,EACxB,CAAC,CAACU,QACCC,KAAeX,WAAmB;KACjC,MAAMY,kBAAkBvC,aAAa2B,OAAO;AAC5C,SAAI,CAACW,IAAIE,SAASD,gBAAgB,CAChCD,KAAIG,KAAKF,gBAAgB;AAG3B,YAAOD;OAET;KACE,GAAGzC;KACH;KACA,KAAKyB,OAAOoB,aACV,KAAKpB,OAAOoB,cAAc,gBAC1B,GAAG1C,aAAa,KAAKsB,OAAOoB,UAAU,CAAA;KACzC,CAACC,OAAOC,QACX,CAAC;AAEDtB,WAAOjB,IAAIsB,SAAS/B,QAAQ0B,OAAOjB,IAAIsB,OAAO,CAACU,QAAQC,KAAKX,WAAW;AACrE,SAAI,CAACW,IAAIE,SAASb,OAAOkB,QAAQ,OAAO,GAAG,CAAC,CAC1CP,KAAIG,KAAKd,OAAOkB,QAAQ,OAAO,GAAG,CAAC;AAErC,YAAOP;OACN,EAAc,CAAC;AAElB,WAAOhB;;GAET,MAAMwB,iBAAiB;AACrB,SAAKvB,MACH,iFACD;AAED,SAAKlB,MAAMJ,KACT;KACE8C,QAAQ,MAAMxC,QAAQ,MAAM,KAAKe,OAAOjB,IAAI;KAC5CoB,UAAU,CAAC,CAAC,KAAKH,OAAOjB,IAAIoB;KAC5BC,QAAQ,CAAC,CAAC,KAAKJ,OAAOjB,IAAIqB;KAC3B,EACD,KAAKrB,OAAO,EAAE,EACd;KACEmB,OAAO,EACLnB,KAAK,EAAC,EACP;KACD2C,MAAM;MACJ3C,KAAK,EAAE;MACP8B,SAAS,EAAC;MACX;KACDY,QAAQ,EAAE;KACVE,UAAU,EAAC;KAEf,CAA4B;AAE5B,QACE,KAAK3B,OAAO4B,YAAY,aACxB,CAAC,KAAK5B,OAAO6B,aACb,KAAKC,eAAeC,aAAa,KAAKC,KAAKD,YAC3CvD,WAAWY,0BAA0B,MAAM,MAAM,CAAC,EAClD;AACA,UAAKa,MACH,2EACD;AAED,UAAKlB,IAAImB,MAAMnB,MAAM,MAAMQ,sBAAsB,MAAM,MAAM;AAE7D,SAAIf,WAAWW,sBAAsB,MAAM,MAAM,CAAC,CAChD,MAAKJ,IAAI2C,KAAK3C,MAAM,MAAMO,kBAAkB,KAAK;AAGnD,SAAId,WAAWY,0BAA0B,MAAM,UAAU,CAAC,CACxD,MAAKL,IAAImB,MAAMW,UAAU,MAAMtB,sBAC7B,MACA,UACD;AAGH,SAAIf,WAAWW,sBAAsB,MAAM,UAAU,CAAC,CACpD,MAAKJ,IAAI2C,KAAKb,UAAU,MAAMrB,sBAAsB,KAAK;WAEtD;AACL,UAAKS,MACH,gEACD;AAED,UAAKlB,IAAImB,MAAMnB,MAAM,MAAMY,WACzB,MACA,KAAKK,OAAOjB,IAAImB,OAAOQ,MACvB,KAAKV,OAAOjB,IAAImB,OAAOH,KACxB;AACD,SAAI,CAAC,KAAKhB,IAAImB,MAAMnB,IAClB,OAAM,IAAIkD,MACR,+EACD;AAGH,WAAMvC,uBAAuB,MAAM,KAAKX,IAAImB,MAAMnB,KAAK,MAAM;AAE7D,UAAKA,IAAImB,MAAMW,UAAU,MAAMjB,eAC7B,MACA,KAAKI,OAAOjB,IAAI8B,SAASH,MACzB,KAAKV,OAAOjB,IAAI8B,SAASd,KAC1B;AACD,SAAI,CAAC,KAAKhB,IAAImB,MAAMW,QAClB,OAAM,IAAIoB,MACR,2EACD;AAGH,WAAMvC,uBAAuB,MAAM,KAAKX,IAAImB,MAAMW,SAAS,UAAU;AAErE,UAAKZ,MACH,YACE,KAAKlB,IAAImB,MAAMnB,IAAImD,eAAe,CAACC,UAAU,EAAC,4CAE9C,KAAKpD,IAAImB,MAAMW,SAASqB,eAAe,CAACC,UAAU,EAAC,kCAEtD;KAED,MAAMC,eAAe,KAAKrD,IAAImB,MAAMnB,IACjCmD,eAAe,CACfb,QAAOgB,SAAQA,KAAKC,UAAU,CAACH,SAAS,EAAE;AAE7CI,YAAOC,QAAQ,MAAMvD,QAAQ,MAAM,KAAKe,OAAOjB,IAAI,CAAC,CAAC0D,SAClD,CAACC,KAAKC,WAAW;MAChB,MAAMC,gBAAgB,KAAK5C,OAAOjB,IAAIsB,OAAOU,QAC1CC,KAAKX,WAAW;AACf,WAAIqC,IAAInB,QAAQ,OAAO,GAAG,CAACsB,WAAWxC,OAAO,CAC3C,QAAOqC,IAAInB,QAAQ,OAAO,GAAG,CAACuB,MAAMzC,OAAO8B,OAAO;AAEpD,cAAOnB;SAET0B,IACD;MAED,MAAMK,WAAWX,aAAaY,MAAKX,SACjCA,MAAMC,UAAU,CAACW,SAAS,CAAC/B,SAAS0B,cACtC,CAAC;AACD,UAAI,KAAK7D,IAAImB,MAAMnB,KAAKmE,YAAYN,cAAc,IAAIG,SACpD,MAAKhE,IAAImB,MAAMnB,IACZoE,YAAYP,cAAc,CAC1BQ,gBAAgBT,MAAM;OAG9B;AAED,UAAK5D,IAAI2C,KAAK3C,MAAM,IAAIhB,gBACtB;MACEsF,MAAMrF,eAAesF;MACrBC,UAAU;MACVC,aAAa,6EACX,KAAKxD,OAAOD,OACR,GAAG,KAAKC,OAAOD,KAAI,gBACnB,cAAa;MAEnBG,OAAO,EAAA;MACR,EACD,KAAKnB,IAAImB,MAAMnB,IAChB;AAED,WAAMU,mBAAmB,MAAM,KAAKV,IAAI2C,KAAK3C,KAAK,MAAM;AAExD,SAAI,KAAKA,IAAImB,MAAMW,SAAS;AAC1B,YAAMnB,uBACJ,MACA,KAAKX,IAAImB,MAAMW,SACf,UACD;AAED,WAAK9B,IAAI2C,KAAKb,UAAU,IAAI9C,gBAC1B;OACEsF,MAAMrF,eAAesF;OACrBC,UAAU;OACVC,aAAa,wEACX,KAAKxD,OAAOD,OACR,GAAG,KAAKC,OAAOD,KAAI,gBACnB,cAAa;OAEnBG,OAAO,EAAA;OACR,EACD,KAAKnB,IAAImB,MAAMW,QAChB;AACD,YAAMpB,mBAAmB,MAAM,KAAKV,IAAI2C,KAAKb,SAAS,UAAU;;;;GAItE,MAAM4C,UAAU;IAAA,MAAAC,SAAA;AACd,SAAKzD,MACH,0EACD;IAED,MAAM0D,SAAS,MAAMpE,sBAAsB,MAAM,MAAM;AAEvD,WAAOrB,OACL,MAAI0F,gBACH9E,YAAU;KAAA,IACT+E,gBAAa;AAAA,aAAEH,OAAK1D,OAAOjB,IAAI8E;;KAC/BC,YAAYH;KAAM,CAEtB,CAAC;;GAEHrD,WAAW;IACTyD,OAAO;IACP,MAAMC,UAAU;AACd,SAAI,KAAKjF,IAAI2C,KAAK3C,IAAImD,eAAe,CAACC,SAAS,GAAG;AAChD,WAAK8B,MACH,4DAA4D9E,sBAC1D,MACA,MACD,CAAA,GACF;AACD,YAAMM,mBAAmB,MAAM,KAAKV,IAAI2C,KAAK3C,KAAK,MAAM;;AAG1D,SAAI,KAAKA,IAAI2C,KAAKb,QAAQqB,eAAe,CAACC,SAAS,GAAG;AACpD,WAAK8B,MACH,uDAAuD9E,sBACrD,MACA,UACD,CAAA,GACF;AACD,YAAMM,mBAAmB,MAAM,KAAKV,IAAI2C,KAAKb,SAAS,UAAU;;;IAGrE;GACD,MAAMqD,OAAO;AACX,SAAKjE,MACH,8DAA8DxB,UAC5DO,kBAAkB,KAAK,EACvB,SACD,CAAA,GACF;IAED,MAAM2E,SAAS,MAAMpE,sBAAsB,MAAM,MAAM;AAEvD,WAAOrB,OACL,MAAI0F,gBACH/E,aAAW;KAACsF,aAAa;KAAGL,YAAYH;KAAM,CACjD,CAAC;;GAEH,MAAMS,WAAW;IACf,MAAMC,iBAAiBlF,sBAAsB,MAAM,MAAM;AAEzD,SAAKc,MAAM,mCAAmCoE,eAAc,GAAI;AAEhE,UAAM5E,mBAAmB,MAAM,KAAKV,IAAI2C,KAAK3C,KAAK,MAAM;;GAE3D;EACD;GACEgB,MAAM;GACNC,SAAS;AACP,WAAO,EACL7B,QAAQQ,KAAKmB,QAAQ3B,UAAU,EAAE,EAAE,EACjCmG,YAAY,EACVvF,KAAKA,IAAI,KAAI,EACf,EACD,CAAA,EACF;;GAEJ;EACD;GACEgB,MAAM;GACNwE,MAAM,EACJ/C,iBAA+B;AAC7B,WAAO,EACLgD,WAAW,KAAKxE,QAAQjB,KAAKsB,QAC9B;MAEL;GACD;EACDlC,OAAO2B,QAAQ3B,OAAO;EACvB;;AAGH,kBAAe0B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-env",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
|
|
6
6
|
"repository": {
|
|
@@ -328,5 +328,5 @@
|
|
|
328
328
|
},
|
|
329
329
|
"publishConfig": { "access": "public" },
|
|
330
330
|
"types": "./dist/index.d.cts",
|
|
331
|
-
"gitHead": "
|
|
331
|
+
"gitHead": "554a70aaf64cca56e3d8c077d50fa6944b3b96d3"
|
|
332
332
|
}
|