@mushi-mushi/cli 0.11.1 → 0.11.2

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.
@@ -0,0 +1,6 @@
1
+ // src/version.ts
2
+ var MUSHI_CLI_VERSION = true ? "0.11.2" : "0.0.0-dev";
3
+
4
+ export {
5
+ MUSHI_CLI_VERSION
6
+ };
package/dist/index.js CHANGED
@@ -595,7 +595,7 @@ function getFrameworkFromPkg(pkg) {
595
595
  }
596
596
 
597
597
  // src/version.ts
598
- var MUSHI_CLI_VERSION = true ? "0.11.1" : "0.0.0-dev";
598
+ var MUSHI_CLI_VERSION = true ? "0.11.2" : "0.0.0-dev";
599
599
 
600
600
  // src/init.ts
601
601
  var ENV_FILES = [".env.local", ".env"];
@@ -1453,11 +1453,10 @@ async function checkEndpointReachability(endpoint, doFetch = globalThis.fetch) {
1453
1453
  }
1454
1454
  async function checkSdkInstall(cwd) {
1455
1455
  try {
1456
- const { readFile: readFile2, access } = await import("fs/promises");
1456
+ const { readFile: readFile2 } = await import("fs/promises");
1457
1457
  const { join: join6, resolve: resolve2 } = await import("path");
1458
1458
  const root = resolve2(cwd);
1459
1459
  const pkgPath = join6(root, "package.json");
1460
- await access(pkgPath);
1461
1460
  const pkg = JSON.parse(await readFile2(pkgPath, "utf8"));
1462
1461
  const deps = { ...pkg.dependencies ?? {}, ...pkg.devDependencies ?? {} };
1463
1462
  const sdks = [
package/dist/init.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  } from "./chunk-NYPX5KXR.js";
9
9
  import {
10
10
  MUSHI_CLI_VERSION
11
- } from "./chunk-EXLNHPSC.js";
11
+ } from "./chunk-GPF6KFBM.js";
12
12
 
13
13
  // src/init.ts
14
14
  import * as p from "@clack/prompts";
package/dist/version.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  MUSHI_CLI_VERSION
3
- } from "./chunk-EXLNHPSC.js";
3
+ } from "./chunk-GPF6KFBM.js";
4
4
  export {
5
5
  MUSHI_CLI_VERSION
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mushi-mushi/cli",
3
- "version": "0.11.1",
3
+ "version": "0.11.2",
4
4
  "license": "MIT",
5
5
  "description": "CLI for Mushi Mushi — `mushi init` wizard installs the right SDK for your framework, plus report triage and pipeline health commands",
6
6
  "bin": {
@@ -1,6 +0,0 @@
1
- // src/version.ts
2
- var MUSHI_CLI_VERSION = true ? "0.11.1" : "0.0.0-dev";
3
-
4
- export {
5
- MUSHI_CLI_VERSION
6
- };