@rpcbase/cli 0.103.0 → 0.105.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/cli",
3
- "version": "0.103.0",
3
+ "version": "0.105.0",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -27,10 +27,10 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "axios": "1.10.0",
30
+ "axios": "1.13.2",
31
31
  "dotenv": "17.0.0",
32
32
  "dotenv-expand": "12.0.2",
33
- "validator": "13.15.15",
33
+ "validator": "13.15.23",
34
34
  "yargs": "17.7.2"
35
35
  }
36
36
  }
package/src/cmd-deploy.js CHANGED
@@ -115,7 +115,7 @@ export const deploy = async (argv) => {
115
115
  log(`Running: ${rsyncCmd}`)
116
116
  execSync(rsyncCmd, { stdio: argv.verbose ? "inherit" : "ignore" })
117
117
 
118
- await ssh(`cd ~/apps/${deployDir}/infrastructure && [ -f package.json ] && yarn || true`)
118
+ await ssh(`cd ~/apps/${deployDir}/infrastructure && [ -f package.json ] && npm ci || true`)
119
119
 
120
120
  log("Restarting application...")
121
121
  await ssh(`cd ~/apps/${deployDir}/infrastructure && node ctrl.js down prod`, true)