@episoda/cli 0.2.165 → 0.2.166
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.
|
@@ -2978,7 +2978,7 @@ var require_package = __commonJS({
|
|
|
2978
2978
|
"package.json"(exports2, module2) {
|
|
2979
2979
|
module2.exports = {
|
|
2980
2980
|
name: "@episoda/cli",
|
|
2981
|
-
version: "0.2.
|
|
2981
|
+
version: "0.2.166",
|
|
2982
2982
|
description: "CLI tool for Episoda local development workflow orchestration",
|
|
2983
2983
|
main: "dist/index.js",
|
|
2984
2984
|
types: "dist/index.d.ts",
|
|
@@ -11635,7 +11635,7 @@ function pnpmCommand(args) {
|
|
|
11635
11635
|
' echo "[setup] ERROR: pnpm is not installed and corepack is unavailable" >&2',
|
|
11636
11636
|
" exit 127",
|
|
11637
11637
|
"fi"
|
|
11638
|
-
].join("
|
|
11638
|
+
].join("\n");
|
|
11639
11639
|
}
|
|
11640
11640
|
var PACKAGE_MANAGERS = {
|
|
11641
11641
|
javascript: [
|
|
@@ -11793,7 +11793,16 @@ function getBuildPackagesCommand(packageManagerName, hasBuildPackagesScript) {
|
|
|
11793
11793
|
}
|
|
11794
11794
|
switch (packageManagerName) {
|
|
11795
11795
|
case "pnpm":
|
|
11796
|
-
return
|
|
11796
|
+
return [
|
|
11797
|
+
"if command -v pnpm >/dev/null 2>&1; then",
|
|
11798
|
+
" pnpm run build:packages",
|
|
11799
|
+
"elif command -v corepack >/dev/null 2>&1; then",
|
|
11800
|
+
" corepack pnpm run build:packages",
|
|
11801
|
+
"else",
|
|
11802
|
+
' echo "[setup] ERROR: pnpm is not installed and corepack is unavailable" >&2',
|
|
11803
|
+
" exit 127",
|
|
11804
|
+
"fi"
|
|
11805
|
+
].join("\n");
|
|
11797
11806
|
case "yarn":
|
|
11798
11807
|
return "yarn build:packages";
|
|
11799
11808
|
case "npm":
|