@chrysb/alphaclaw 0.1.11 → 0.1.12
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.
|
@@ -102,7 +102,7 @@ const createAlphaclawVersionService = () => {
|
|
|
102
102
|
const installDir = findInstallDir();
|
|
103
103
|
console.log(`[alphaclaw] Running: npm install @chrysb/alphaclaw@latest (cwd: ${installDir})`);
|
|
104
104
|
exec(
|
|
105
|
-
"npm install @chrysb/alphaclaw@latest --omit=dev --no-save --package-lock=false",
|
|
105
|
+
"npm install @chrysb/alphaclaw@latest --omit=dev --no-save --package-lock=false --prefer-online",
|
|
106
106
|
{
|
|
107
107
|
cwd: installDir,
|
|
108
108
|
env: {
|
|
@@ -80,9 +80,9 @@ const createOpenclawVersionService = ({ gatewayEnv, restartGateway, isOnboarded
|
|
|
80
80
|
|
|
81
81
|
const installLatestOpenclaw = () =>
|
|
82
82
|
new Promise((resolve, reject) => {
|
|
83
|
-
console.log("[alphaclaw] Running: npm install --omit=dev --no-save --package-lock=false openclaw@latest");
|
|
83
|
+
console.log("[alphaclaw] Running: npm install --omit=dev --no-save --package-lock=false --prefer-online openclaw@latest");
|
|
84
84
|
exec(
|
|
85
|
-
"npm install --omit=dev --no-save --package-lock=false openclaw@latest",
|
|
85
|
+
"npm install --omit=dev --no-save --package-lock=false --prefer-online openclaw@latest",
|
|
86
86
|
{
|
|
87
87
|
cwd: kAppDir,
|
|
88
88
|
env: {
|