@sdeverywhere/cli 0.7.30 → 0.7.32

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": "@sdeverywhere/cli",
3
- "version": "0.7.30",
3
+ "version": "0.7.32",
4
4
  "description": "Contains the `sde` command line interface for the SDEverywhere tool suite.",
5
5
  "type": "module",
6
6
  "files": [
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@sdeverywhere/build": "^0.3.7",
15
- "@sdeverywhere/compile": "^0.7.23",
15
+ "@sdeverywhere/compile": "^0.7.24",
16
16
  "bufx": "^1.0.5",
17
17
  "byline": "^5.0.0",
18
18
  "ramda": "^0.27.0",
package/src/sde-bundle.js CHANGED
@@ -39,7 +39,7 @@ export let bundle = async (configPath, verbose) => {
39
39
  if (result.isOk()) {
40
40
  // Exit with the specified code
41
41
  console.log()
42
- process.exit(result.exitCode)
42
+ process.exit(result.value.exitCode)
43
43
  } else {
44
44
  // Exit with a non-zero code if any step failed
45
45
  console.error(result.error)