@fishawack/lab-env 4.24.0 → 4.25.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.25.0 (2023-10-24)
4
+ * [Change] Bumped fishawack/lab-env-core-1 to 1.3.1
5
+ * [Bug] when services not running exit with status code of 1
6
+
7
+ ### 4.24.0 (2023-10-24)
8
+ * [Misc] no changes due to issue with deployment
9
+
3
10
  ### 4.23.0 (2023-10-24)
4
11
  * [Feature] add target and target_image args to dockerfile build process to overrides can switch between full and alpine
5
12
  * [Feature] added new clients
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "lab-env docker config for the @fishawack/core/1 npm module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
package/globals.js CHANGED
@@ -213,7 +213,7 @@ if(args[0] !== 'diag' && args[0] !== 'diagnose' && args[0] !== 'origin' && args[
213
213
  // Stop here if docker process not running
214
214
  } else if(!services) {
215
215
  console.log(`${utilities.colorize(`Docker`, 'info')} does not appear to be running...\n\nRun ${utilities.colorize(`fw --debug`, 'success')} for more information`);
216
- process.exit();
216
+ process.exit(1);
217
217
  }
218
218
  }
219
219
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.24.0",
3
+ "version": "4.25.0",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {