create-fleetbo-project 1.2.76 → 1.2.78

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.
@@ -18,11 +18,11 @@ const dotenv = require('dotenv');
18
18
  const os = require('os');
19
19
  const archiver = require('archiver');
20
20
  const readline = require('readline');
21
- const ANDROID_BUILD_URL = "https://us-central1-myapp-259bf.cloudfunctions.net/FandroidBuild";
22
- const IOS_BUILD_URL = "https://us-central1-myapp-259bf.cloudfunctions.net/FiosBuild";
23
- const UPDATE_NETWORK_URL = 'https://us-central1-myapp-259bf.cloudfunctions.net/updateDeveloperNetwork';
24
- const ALEX_ENGINE_URL = "https://us-central1-myapp-259bf.cloudfunctions.net/generateNativeModule";
25
- const INJECT_DEPS_URL = "https://us-central1-myapp-259bf.cloudfunctions.net/saveGeneratedFile";
21
+ const ANDROID_BUILD_URL = "https://fandroidbuild-jqycakhlxa-uc.a.run.app";
22
+ const IOS_BUILD_URL = "https://fiosbuild-jqycakhlxa-uc.a.run.app";
23
+ const UPDATE_NETWORK_URL = 'https://updatedevelopernetwork-jqycakhlxa-uc.a.run.app';
24
+ const ALEX_ENGINE_URL = "https://generatenativemodule-jqycakhlxa-uc.a.run.app";
25
+ const INJECT_DEPS_URL = "https://savegeneratedfile-jqycakhlxa-uc.a.run.app";
26
26
  const APP_JS_PATH = path.join(process.cwd(), 'src/App.js');
27
27
  const PORT = 3000;
28
28
  let uplinkProcess = null;
@@ -121,7 +121,7 @@ if (command === 'alex') {
121
121
  checkGitSecurity();
122
122
  const initialPrompt = args.slice(1).join(' ');
123
123
  const processAlexRequest = async (prompt) => {
124
- if (prompt.length > 500) {
124
+ if (prompt.length > 100) {
125
125
  console.log('\\n\\x1b[31m⛔ [Alex Safety] Request too long (' + prompt.length + '/500 chars).\\x1b[0m');
126
126
  console.log('\\x1b[90mAlex prefers concise instructions. Please summarize.\\x1b[0m');
127
127
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.2.76",
3
+ "version": "1.2.78",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {