@mono-labs/cli 0.0.18 → 0.0.19
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/lib/app.js +1 -2
- package/package.json +1 -1
package/lib/app.js
CHANGED
|
@@ -22,7 +22,7 @@ console.log('binfromjson', getBinFromPackageJSON());
|
|
|
22
22
|
const programName = getBinFromPackageJSON();
|
|
23
23
|
console.log('description', packageJSON.description);
|
|
24
24
|
|
|
25
|
-
program.name(programName).description(packageJSON.description).version(version)
|
|
25
|
+
program.name(programName).description(packageJSON.description || '').version(version)
|
|
26
26
|
const EXPO_PUBLIC_API_URL =
|
|
27
27
|
(process.env.EXPO_PUBLIC_API_URL && process.env.EXPO_PUBLIC_API_URL.length > 0) || STAGING_URL
|
|
28
28
|
const CLIENT_NAME = process.env.CLIENT_NAME || 'jawdrop'
|
|
@@ -35,7 +35,6 @@ export const generateEnvValues = (
|
|
|
35
35
|
return {
|
|
36
36
|
...process.env,
|
|
37
37
|
EXPO_PUBLIC_API_URL,
|
|
38
|
-
|
|
39
38
|
CLIENT_NAME,
|
|
40
39
|
EXPO_FORCE_PROD: forceProd,
|
|
41
40
|
EXPO_PRIVATE_API_URL: ngrokUrl,
|