create-githat-app 1.2.1 → 1.2.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/dist/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -299,6 +299,9 @@ async function promptGitHat(existingKey) {
|
|
|
299
299
|
process.exit(0);
|
|
300
300
|
}
|
|
301
301
|
publishableKey = pastedKey || "";
|
|
302
|
+
} else if (connectChoice === "skip") {
|
|
303
|
+
p3.log.info("Your app will work on localhost without a key!");
|
|
304
|
+
p3.log.info("For production, get your key at https://githat.io/dashboard/apps");
|
|
302
305
|
}
|
|
303
306
|
}
|
|
304
307
|
const authFeatures = await p3.multiselect({
|