@powerlines/plugin-date 0.12.150 → 0.12.151
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.
|
@@ -92,7 +92,7 @@ async function reflectEnv(context, file, name) {
|
|
|
92
92
|
if (file) config = (0, __powerlines_deepkit_vendor_type.resolveClassType)(await require_reflect_type.reflectType(context, {
|
|
93
93
|
file: !(0, __stryke_path_is_parent_path.isParentPath)(file, context.workspaceConfig.workspaceRoot) ? (0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, file) : file,
|
|
94
94
|
name
|
|
95
|
-
}
|
|
95
|
+
}));
|
|
96
96
|
const defaultConfigType = await require_reflect_type.reflectType(context, await require_persistence.getEnvDefaultTypeDefinition(context));
|
|
97
97
|
return mergeEnvReflections(context, [
|
|
98
98
|
await require_persistence.readEnvTypeReflection(context, "env"),
|
|
@@ -105,7 +105,7 @@ async function reflectSecrets(context, file, name) {
|
|
|
105
105
|
if (file) config = (0, __powerlines_deepkit_vendor_type.resolveClassType)(await require_reflect_type.reflectType(context, {
|
|
106
106
|
file: !(0, __stryke_path_is_parent_path.isParentPath)(file, context.workspaceConfig.workspaceRoot) ? (0, __stryke_path_join_paths.joinPaths)(context.workspaceConfig.workspaceRoot, file) : file,
|
|
107
107
|
name
|
|
108
|
-
}
|
|
108
|
+
}));
|
|
109
109
|
const defaultSecretsType = await require_reflect_type.reflectType(context, await require_persistence.getSecretsDefaultTypeDefinition(context));
|
|
110
110
|
return mergeSecretsReflections(context, [
|
|
111
111
|
await require_persistence.readSecretsReflection(context),
|
|
@@ -91,7 +91,7 @@ async function reflectEnv(context, file, name) {
|
|
|
91
91
|
if (file) config = resolveClassType(await reflectType(context, {
|
|
92
92
|
file: !isParentPath(file, context.workspaceConfig.workspaceRoot) ? joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
93
93
|
name
|
|
94
|
-
}
|
|
94
|
+
}));
|
|
95
95
|
const defaultConfigType = await reflectType(context, await getEnvDefaultTypeDefinition(context));
|
|
96
96
|
return mergeEnvReflections(context, [
|
|
97
97
|
await readEnvTypeReflection(context, "env"),
|
|
@@ -104,7 +104,7 @@ async function reflectSecrets(context, file, name) {
|
|
|
104
104
|
if (file) config = resolveClassType(await reflectType(context, {
|
|
105
105
|
file: !isParentPath(file, context.workspaceConfig.workspaceRoot) ? joinPaths(context.workspaceConfig.workspaceRoot, file) : file,
|
|
106
106
|
name
|
|
107
|
-
}
|
|
107
|
+
}));
|
|
108
108
|
const defaultSecretsType = await reflectType(context, await getSecretsDefaultTypeDefinition(context));
|
|
109
109
|
return mergeSecretsReflections(context, [
|
|
110
110
|
await readSecretsReflection(context),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-date",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.151",
|
|
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": {
|
|
@@ -128,15 +128,15 @@
|
|
|
128
128
|
"files": ["dist/**/*"],
|
|
129
129
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
130
130
|
"dependencies": {
|
|
131
|
-
"@powerlines/plugin-env": "^0.15.
|
|
131
|
+
"@powerlines/plugin-env": "^0.15.13",
|
|
132
132
|
"@storm-software/config-tools": "^1.188.75",
|
|
133
133
|
"@stryke/path": "^0.24.1",
|
|
134
|
-
"powerlines": "^0.37.
|
|
134
|
+
"powerlines": "^0.37.2"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
|
-
"@powerlines/nx": "^0.11.
|
|
137
|
+
"@powerlines/nx": "^0.11.58",
|
|
138
138
|
"@types/node": "^24.10.4"
|
|
139
139
|
},
|
|
140
140
|
"publishConfig": { "access": "public" },
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "5a9bfc9333eca98a453682f39a04a0d642930a50"
|
|
142
142
|
}
|