shiply-cli 0.4.0 → 0.4.1

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/confetti.js CHANGED
@@ -2,7 +2,7 @@ const GLYPHS = ['✦', '✧', '★', '☆', '●', '◆', '▲', '■', '♥', '
2
2
  const COLORS = [196, 202, 208, 220, 226, 118, 46, 51, 45, 39, 99, 201, 207, 213];
3
3
  const ESC = '\x1b';
4
4
  /** Full-width ANSI confetti burst — sites going live deserve a party. */
5
- export function confetti(message = '🎉 SITE IS LIVE 🎉') {
5
+ export function confetti(message = ' SITE IS LIVE ') {
6
6
  const cols = Math.min(process.stdout.columns ?? 80, 100);
7
7
  const rows = Math.min(Math.max((process.stdout.rows ?? 24) - 6, 8), 18);
8
8
  let out = '\n';
package/dist/index.js CHANGED
@@ -125,7 +125,7 @@ async function main() {
125
125
  if (live.status < 400) {
126
126
  console.log(`SITE_READY url=${res.siteUrl} status=${live.status}`);
127
127
  if (!values['no-confetti'])
128
- console.log(confetti(`🎉 ${host} IS LIVE 🎉`));
128
+ console.log(confetti(`⛵ ${host} IS LIVE ⛵`));
129
129
  }
130
130
  }
131
131
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shiply-cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Publish static sites to shiply.now from the command line — instant web hosting for agents.",
5
5
  "license": "MIT",
6
6
  "type": "module",