create-flow-os 0.0.18 → 0.0.19

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/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "create-flow-os",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "license": "PolyForm-Shield-1.0.0",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@flow-os/client": "^0.0.18"
7
+ "@flow-os/client": "^0.0.19"
8
8
  },
9
9
  "bin": {
10
10
  "create-flow-os": "./src/index.ts"
package/src/init/index.ts CHANGED
@@ -64,7 +64,9 @@ if (!toInit.length) {
64
64
  // ───────────────────────────────────────────────────────────────────────────────
65
65
  // Execute: fetch versione client da npm (latest/dev), init libs, poi output box
66
66
  // ───────────────────────────────────────────────────────────────────────────────
67
+ process.stdout.write(V + "Fetching latest @flow-os/client..." + R);
67
68
  const clientVersion = await fetchFlowClientVersion();
69
+ process.stdout.write(clientVersion ? ` ${V}${clientVersion}${R}\n` : " (fallback)\n");
68
70
  const done = new Set<string>();
69
71
  for (const lib of toInit) initLib(lib, cwd, done, clientVersion);
70
72