simvyn 1.0.3 → 1.0.4

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.
@@ -38,7 +38,7 @@
38
38
  }
39
39
  </style>
40
40
  <title>simvyn</title>
41
- <script type="module" crossorigin src="/assets/index-Du0XWZXh.js"></script>
41
+ <script type="module" crossorigin src="/assets/index-DeQwO1Dl.js"></script>
42
42
  <link rel="stylesheet" crossorigin href="/assets/index-DJAZnP1I.css">
43
43
  </head>
44
44
  <body>
package/dist/index.js CHANGED
@@ -7760,8 +7760,20 @@ async function startServer(opts = {}) {
7760
7760
  });
7761
7761
  await app.listen({ port, host });
7762
7762
  const url = `http://${host}:${port}`;
7763
- console.log(`
7764
- simvyn running at ${url}
7763
+ try {
7764
+ const mod = await import("cfonts");
7765
+ const cfonts = mod.default ?? mod;
7766
+ cfonts.say("simvyn", {
7767
+ font: "simple3d",
7768
+ gradient: ["#FF6B9D", "#C44569"],
7769
+ transitionGradient: true,
7770
+ space: false,
7771
+ letterSpacing: 2
7772
+ });
7773
+ } catch {
7774
+ console.log("\n simvyn\n");
7775
+ }
7776
+ console.log(` running at ${url}
7765
7777
  `);
7766
7778
  if (shouldOpen) {
7767
7779
  try {
@@ -7773,7 +7785,13 @@ simvyn running at ${url}
7773
7785
  }
7774
7786
  }
7775
7787
  const shutdown = async () => {
7776
- console.log("\nShutting down...");
7788
+ const P = "\x1B[35m";
7789
+ const R = "\x1B[0m";
7790
+ console.log(`
7791
+ ${P} /\\_/\\ ~${R}
7792
+ ${P} ( o.o ) bye!${R}
7793
+ ${P} > ^ <${R}
7794
+ `);
7777
7795
  await app.close();
7778
7796
  process.exit(0);
7779
7797
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simvyn",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "Universal mobile device devtool — control iOS Simulators and Android Emulators from a single dashboard and CLI",
6
6
  "main": "./dist/index.js",
@@ -50,6 +50,7 @@
50
50
  "@tmcw/togeojson": "^7.1.2",
51
51
  "@xmldom/xmldom": "^0.8.11",
52
52
  "better-sqlite3": "^12.6.2",
53
+ "cfonts": "^3.3.1",
53
54
  "commander": "^14",
54
55
  "fastify": "^5.7.4",
55
56
  "fastify-plugin": "^5.1.0",