watchful-cli 1.7.52 → 1.7.54

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/README.md CHANGED
@@ -225,4 +225,4 @@ The number of child processes has also been set to 4 here, but remember that thi
225
225
 
226
226
  ## Contact
227
227
 
228
- - james.smith@djalbat.com
228
+ * james.smith@djalbat.com
@@ -39,11 +39,7 @@ function batchAction(wait, node, debug, release, bundler, quietly, metrics, proc
39
39
  action(operations, (success) => {
40
40
  if (!success) {
41
41
  console.log(BATCH_BUILD_FAILED_MESSAGE);
42
-
43
- process.exit(1);
44
42
  }
45
-
46
- process.exit(0);
47
43
  }, context);
48
44
  }
49
45
 
@@ -37,7 +37,7 @@ function incrementalAction(wait, node, debug, release, bundler, quietly, metrics
37
37
  if (!success) {
38
38
  console.log(INCREMENTAL_BUILD_FAILED_MESSAGE);
39
39
 
40
- process.exit(1);
40
+ return;
41
41
  }
42
42
 
43
43
  watch(context);
package/bin/main.js CHANGED
@@ -42,8 +42,6 @@ function main(command, argument, options) {
42
42
  case null: {
43
43
  console.log(NO_COMMAND_GIVEN_MESSAGE);
44
44
 
45
- process.exit(1);
46
-
47
45
  break;
48
46
  }
49
47
 
@@ -74,8 +72,6 @@ function main(command, argument, options) {
74
72
  default: {
75
73
  console.log(COMMAND_NOT_RECOGNISED_MESSAGE);
76
74
 
77
- process.exit(1);
78
-
79
75
  break;
80
76
  }
81
77
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "watchful-cli",
3
3
  "author": "James Smith",
4
- "version": "1.7.52",
4
+ "version": "1.7.54",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/watchful-cli",
7
7
  "description": "Incremental transpilation with bundling.",