@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 +7 -0
- package/core/1/package.json +1 -1
- package/globals.js +1 -1
- package/package.json +1 -1
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
|
package/core/1/package.json
CHANGED
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
|
|