@vaharoni/devops 1.2.2 → 1.2.6

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.
@@ -18,6 +18,6 @@ EXAMPLES
18
18
  ${keyExamples}
19
19
  `;
20
20
  async function run(cmdObj) {
21
- cmdObj.executorFromEnv(`${execShPath} db prisma ${cmdObj.args.join(" ")}`, { checkEnvYaml: false }).spawn();
21
+ cmdObj.executorFromEnv(`${execShPath} db bunx prisma ${cmdObj.args.join(" ")}`, { checkEnvYaml: false }).spawn();
22
22
  }
23
23
  export const prisma = { oneLiner, keyExamples, run };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vaharoni/devops",
3
3
  "type": "module",
4
- "version": "1.2.2",
4
+ "version": "1.2.6",
5
5
  "description": "Devops utility",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -23,7 +23,7 @@ EXAMPLES
23
23
 
24
24
  async function run(cmdObj: CLICommandParser) {
25
25
  cmdObj.executorFromEnv(
26
- `${execShPath} db prisma ${cmdObj.args.join(" ")}`,
26
+ `${execShPath} db bunx prisma ${cmdObj.args.join(" ")}`,
27
27
  { checkEnvYaml: false }
28
28
  ).spawn()
29
29
  }