@mono-labs/cli 0.0.101 → 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.
package/index.js CHANGED
@@ -1,34 +1,7 @@
1
1
  // Main entry point for @mono-labs/cli package
2
- export { boot } from './lib/commands/build-process/boot.js';
3
- export { buildCommands } from './lib/commands/build-process/cliFactory.js';
4
- export { runHasteCommand } from './lib/commands/build-process/runHasteCommand.js';
5
- export { verifyOptionValue } from './lib/commands/build-process/validators.js';
6
- export {
7
- setData,
8
- getData,
9
- mergeData,
10
- replaceTokens,
11
- } from './lib/commands/build-process/dataLayer.js';
12
- export {
13
- getHasteConfig,
14
- getRootDirectory,
15
- getRootJson,
16
- } from './lib/commands/loadFromRoot.js';
17
2
  import { generateNewEnvList } from './lib/generateNewEnvList.js';
18
3
 
19
4
  // Default export for convenience
20
5
  export default {
21
6
  generateNewEnvList,
22
- boot,
23
- buildCommands,
24
- runHasteCommand,
25
- verifyOptionValue,
26
- setData,
27
- getData,
28
- mergeData,
29
- replaceTokens,
30
- getHasteConfig,
31
- getRootDirectory,
32
- getRootJson,
33
- program,
34
7
  };
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.101",
3
+ "version": "0.0.103",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",