create-fleetbo-project 1.2.49 → 1.2.50

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.
@@ -172,6 +172,7 @@ if (command === 'alex') {
172
172
  output: process.stdout,
173
173
  prompt: \`\\x1b[34m\${dynamicUsername} ❯ \\x1b[0m\`
174
174
  });
175
+ process.stdout.write('\n\x1b[F');
175
176
  rl.prompt();
176
177
  rl.on('line', async (line) => {
177
178
  if (['exit', 'quit'].includes(line.trim().toLowerCase())) {
@@ -183,6 +184,7 @@ if (command === 'alex') {
183
184
  await processAlexRequest(line.trim());
184
185
  console.log('');
185
186
  }
187
+ process.stdout.write('\n\x1b[F');
186
188
  rl.prompt();
187
189
  }).on('close', () => {
188
190
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.2.49",
3
+ "version": "1.2.50",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {