@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.
- package/dist/lib/dev/index.js +1 -1
- package/package.json +1 -1
- package/src/lib/dev/index.js +1 -1
package/dist/lib/dev/index.js
CHANGED
|
@@ -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("
|
|
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
package/src/lib/dev/index.js
CHANGED
|
@@ -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('
|
|
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) {
|