@joystick.js/cli-canary 0.0.0-canary.58 → 0.0.0-canary.59

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.
@@ -250,7 +250,7 @@ const runInitialBuild = async (buildSettings = {}) => {
250
250
  });
251
251
  const hasErrors = [...fileResults].filter((result) => !!result).map(({ success }) => success).includes(false);
252
252
  if (hasErrors) {
253
- console.log(chalk.redBright("!!! Failed to start app. Correct the errors above and run joystick start again.\n"));
253
+ console.log(chalk.redBright("Failed to start app. Correct the errors above and run joystick start again.\n"));
254
254
  process.exit(1);
255
255
  }
256
256
  } catch (exception) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.58",
3
+ "version": "0.0.0-canary.59",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -307,7 +307,7 @@ const runInitialBuild = async (buildSettings = {}) => {
307
307
 
308
308
  // NOTE: If the initial build fails, exit the startup process.
309
309
  if (hasErrors) {
310
- console.log(chalk.redBright('!!! Failed to start app. Correct the errors above and run joystick start again.\n'));
310
+ console.log(chalk.redBright('Failed to start app. Correct the errors above and run joystick start again.\n'));
311
311
  process.exit(1);
312
312
  }
313
313
  } catch (exception) {