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.
Files changed (2) hide show
  1. package/dist/index.js +6 -11
  2. 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.dim("To deploy, you need either Cloudflare credentials or a Shipem login.")}`);
2157
+ console.log(` ${chalk4.bold("Deploy your app in seconds")} \u2014 no Cloudflare account needed. \u{1F411}`);
2158
2158
  console.log("");
2159
- console.log(` ${chalk4.cyan("Option 1:")} Set Cloudflare credentials (free account)`);
2160
- console.log(` ${chalk4.dim("export CLOUDFLARE_API_TOKEN=your_token")}`);
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: "What would you like to do?",
2166
+ message: "Ready to ship?",
2172
2167
  choices: [
2173
- { name: "Log in with GitHub (sets up deployment)", value: "login" },
2174
- { name: "Quit (I'll set up Cloudflare credentials)", value: "quit" }
2168
+ { name: "Log in with GitHub (free, takes 10 seconds)", value: "login" },
2169
+ { name: "Cancel", value: "quit" }
2175
2170
  ]
2176
2171
  }
2177
2172
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ship-em",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "One-command deployment for apps built by AI coding tools",
5
5
  "type": "module",
6
6
  "bin": {