@budibase/cli 2.0.30-alpha.7 → 2.0.31

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/exec.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/cli",
3
- "version": "2.0.30-alpha.7",
3
+ "version": "2.0.31",
4
4
  "description": "Budibase CLI, for developers, self hosting and migrations.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -26,9 +26,9 @@
26
26
  "outputPath": "build"
27
27
  },
28
28
  "dependencies": {
29
- "@budibase/backend-core": "2.0.30-alpha.7",
30
- "@budibase/string-templates": "2.0.30-alpha.7",
31
- "@budibase/types": "2.0.30-alpha.7",
29
+ "@budibase/backend-core": "^2.0.31",
30
+ "@budibase/string-templates": "^2.0.31",
31
+ "@budibase/types": "^2.0.31",
32
32
  "axios": "0.21.2",
33
33
  "chalk": "4.1.0",
34
34
  "cli-progress": "3.11.2",
@@ -54,5 +54,5 @@
54
54
  "eslint": "^7.20.0",
55
55
  "renamer": "^4.0.0"
56
56
  },
57
- "gitHead": "74511ef9396141daf6d0154eec2b7abc4e884470"
57
+ "gitHead": "a93d02d9e3501a0df1b2c1285912115610bb3769"
58
58
  }
package/src/exec.js CHANGED
@@ -22,6 +22,6 @@ exports.runPkgCommand = async (command, dir = "./") => {
22
22
  throw new Error("Must have yarn or npm installed to run build.")
23
23
  }
24
24
  const npmCmd = command === "install" ? `npm ${command}` : `npm run ${command}`
25
- const cmd = yarn ? `yarn ${command} --ignore-engines` : npmCmd
25
+ const cmd = yarn ? `yarn ${command}` : npmCmd
26
26
  await exports.exec(cmd, dir)
27
27
  }