ship-em 0.2.4 → 0.2.5
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/index.js +6 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2154,24 +2154,19 @@ async function deployCommand(options) {
|
|
|
2154
2154
|
console.log("");
|
|
2155
2155
|
}
|
|
2156
2156
|
if (isAnonymous) {
|
|
2157
|
-
console.log(` ${chalk4.
|
|
2157
|
+
console.log(` ${chalk4.bold("Deploy your app in seconds")} \u2014 no Cloudflare account needed. \u{1F411}`);
|
|
2158
2158
|
console.log("");
|
|
2159
|
-
console.log(`
|
|
2160
|
-
console.log(`
|
|
2161
|
-
console.log(` ${chalk4.dim("export CLOUDFLARE_ACCOUNT_ID=your_account_id")}`);
|
|
2162
|
-
console.log(` ${chalk4.dim("Get these from: https://dash.cloudflare.com/profile/api-tokens")}`);
|
|
2163
|
-
console.log("");
|
|
2164
|
-
console.log(` ${chalk4.cyan("Option 2:")} Log in to Shipem`);
|
|
2165
|
-
console.log(` ${chalk4.dim("npx ship-em login")}`);
|
|
2159
|
+
console.log(` Log in with GitHub to get started. It's free.`);
|
|
2160
|
+
console.log(` ${chalk4.dim("\u2192 https://shipem.dev")}`);
|
|
2166
2161
|
console.log("");
|
|
2167
2162
|
const { action } = await inquirer.prompt([
|
|
2168
2163
|
{
|
|
2169
2164
|
type: "list",
|
|
2170
2165
|
name: "action",
|
|
2171
|
-
message: "
|
|
2166
|
+
message: "Ready to ship?",
|
|
2172
2167
|
choices: [
|
|
2173
|
-
{ name: "Log in with GitHub (
|
|
2174
|
-
{ name: "
|
|
2168
|
+
{ name: "Log in with GitHub (free, takes 10 seconds)", value: "login" },
|
|
2169
|
+
{ name: "Cancel", value: "quit" }
|
|
2175
2170
|
]
|
|
2176
2171
|
}
|
|
2177
2172
|
]);
|