@akash-chowdhury-24/deployhub 1.0.10 → 1.0.11

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": "@akash-chowdhury-24/deployhub",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Zero-configuration deployment and artifact manager",
5
5
  "type": "module",
6
6
  "main": "./src/cli/index.js",
@@ -128,11 +128,12 @@ export function getCliInstallSpec(cliSource) {
128
128
  }
129
129
 
130
130
  /**
131
- * npm/npx command to run deployhub build using the installed scoped package.
131
+ * Shell command to run deployhub build from the installed scoped package.
132
+ * Uses node directly so it works reliably when installed from a private GitHub repo.
132
133
  * @returns {string}
133
134
  */
134
135
  export function getCliBuildCommand() {
135
- return `npx --no-install ${NPM_PACKAGE} build`;
136
+ return `node ./node_modules/${NPM_PACKAGE}/src/cli/index.js build`;
136
137
  }
137
138
 
138
139
  /**