@mono-labs/cli 0.0.140 → 0.0.143

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.
Files changed (3) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
  3. package/types.d.ts +4 -0
package/index.js CHANGED
@@ -4,8 +4,10 @@ import {
4
4
  filterUnwantedEnvVars,
5
5
  filterUnwantedEnvVarsEAS,
6
6
  } from './lib/filterUnwantedEnvVars.js';
7
+ import { replaceTokens } from './lib/commands/build-process/dataLayer.js';
7
8
  // Default export for convenience
8
9
  export default {
10
+ replaceTokens,
9
11
  generateNewEnvList,
10
12
  filterUnwantedEnvVars,
11
13
  filterUnwantedEnvVarsEAS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.140",
3
+ "version": "0.0.143",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/types.d.ts CHANGED
@@ -50,6 +50,10 @@ declare module '@mono-labs/cli' {
50
50
  ): NodeJS.ProcessEnv;
51
51
  export declare function filterUnwantedEnvVars(env: string): NodeJS.ProcessEnv;
52
52
 
53
+ export declare function replaceTokens(
54
+ input: string,
55
+ tokens: Record<string, string>
56
+ ): string;
53
57
  // Function type declarations
54
58
  export declare function generateNewEnvList(
55
59
  processEnv: NodeJS.ProcessEnv