@mono-labs/cli 0.0.137 → 0.0.138

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.
@@ -38,6 +38,7 @@ export function filterUnwantedEnvVars(env) {
38
38
  // 'TERM_PROGRAM',
39
39
  // 'TERM_PROGRAM_VERSION',
40
40
  // '__PSLockDownPolicy',
41
+ 'npm_config_force',
41
42
  ];
42
43
  return Object.keys(env).reduce((obj, key) => {
43
44
  if (!unwantedPrefixes.some((prefix) => key.startsWith(prefix))) {
@@ -103,7 +104,7 @@ export function filterUnwantedEnvVarsEAS(env) {
103
104
  'PATH',
104
105
  'SystemRoot',
105
106
  'SystemDrive',
106
- 'npm_config_force',
107
+ 'npm_',
107
108
  ];
108
109
  return Object.keys(env).reduce((obj, key) => {
109
110
  if (!unwantedPrefixes.some((prefix) => key.startsWith(prefix))) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.137",
3
+ "version": "0.0.138",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",