@aarwitz/tapp 0.16.1 → 0.16.2
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/bin/tapp.js +3 -1
- package/package.json +1 -1
package/bin/tapp.js
CHANGED
|
@@ -1046,7 +1046,9 @@ switch (command) {
|
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
1048
|
console.log(`\n Home: ${tappHome}`);
|
|
1049
|
-
console.log(healthy
|
|
1049
|
+
console.log(healthy
|
|
1050
|
+
? "\nReady. Start with:\n npx -y @aarwitz/tapp open [target]\n npx -y @aarwitz/tapp qa [target]"
|
|
1051
|
+
: "\nFix the ❌ items above, then re-run: tapp doctor");
|
|
1050
1052
|
process.exit(healthy ? 0 : 1);
|
|
1051
1053
|
}
|
|
1052
1054
|
|
package/package.json
CHANGED