@mono-labs/cli 0.0.102 → 0.0.103
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.
|
@@ -6,6 +6,7 @@ export function generateNewEnvList(processEnv) {
|
|
|
6
6
|
const envKeys = Object.keys(processEnv).filter((k) => k.startsWith('MONO_'));
|
|
7
7
|
let envObj = {};
|
|
8
8
|
for (const key of envKeys) {
|
|
9
|
+
if (key.includes('SECRET')) continue; // Skip keys that include
|
|
9
10
|
const mappedKey = envMapList[key] || key;
|
|
10
11
|
envObj[mappedKey] = processEnv[key];
|
|
11
12
|
}
|