@fishawack/lab-env 4.39.0-beta.1 → 4.39.0-beta.3

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,17 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.39.0-beta.3 (2025-05-15)
4
+
5
+ #### Build Updates
6
+
7
+ * **core/1:** Bumped lab-env-core-1 ([86e902c](https://bitbucket.org/fishawackdigital/lab-env/commits/86e902c4621f46e86224e9041bdde1a4467e59c3))
8
+
9
+ ### 4.39.0-beta.2 (2025-05-15)
10
+
11
+ #### Bug Fixes
12
+
13
+ * dont fail if husky cant be found or initialized ([9080ebb](https://bitbucket.org/fishawackdigital/lab-env/commits/9080ebbd8103dc199bf771f9bd3214e70c17ef25))
14
+
3
15
  ### 4.39.0-beta.1 (2025-05-14)
4
16
 
5
17
  #### Features
package/commands/setup.js CHANGED
@@ -14,6 +14,6 @@ module.exports = [
14
14
  }
15
15
 
16
16
  // Initialize husky in the project repo
17
- execSync('husky', {encoding: 'utf8', stdio: 'inherit'});
17
+ execSync('husky &>/dev/null || true', {encoding: 'utf8', stdio: 'inherit'});
18
18
  }
19
19
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.39.0-beta.1",
3
+ "version": "4.39.0-beta.3",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {