create-zenbu-app 0.0.26 → 0.0.27

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.mjs CHANGED
@@ -1331,6 +1331,7 @@ async function runDesktopMode() {
1331
1331
  }
1332
1332
  let installed = false;
1333
1333
  if (!noInstall && !desktopDryRun) {
1334
+ spinner.message(`Installing dependencies`);
1334
1335
  log.info(`running ${pm.type} install in ${appsDir}`);
1335
1336
  installed = runInstallSilent(appsDir, pm, log);
1336
1337
  if (!installed) {
@@ -1341,6 +1342,7 @@ async function runDesktopMode() {
1341
1342
  }
1342
1343
  if (!desktopDryRun) gitInitWithInitialCommit(appsDir);
1343
1344
  const projectVersion = readProjectVersion(appsDir) ?? "0.0.1";
1345
+ spinner.message(`Building app`);
1344
1346
  const result = await buildDesktopApp({
1345
1347
  displayName,
1346
1348
  slug,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zenbu-app",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Scaffold a new Zenbu app",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -14,8 +14,8 @@ export function Home() {
14
14
  <div className="flex-1 max-w-prose">
15
15
  <h1 className="text-2xl font-semibold mb-2">{{displayName}}</h1>
16
16
  <p className="text-zinc-500 dark:text-zinc-400 text-sm leading-relaxed mb-6">
17
- This app is yours to edit. The source lives on your machine and any
18
- change you save reloads instantly.
17
+ This app is yours to edit. The source code lives on your machine
18
+ and any change you save reloads instantly.
19
19
  </p>
20
20
 
21
21
  <div className="text-xs uppercase tracking-wide text-zinc-400 dark:text-zinc-500 mb-1.5">