@fishawack/lab-env 4.41.1-beta.1 → 4.41.2-beta.1

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.41.2-beta.1 (2025-07-25)
4
+
5
+ #### Bug Fixes
6
+
7
+ * use new curl ssl flag ([f20e33b](https://bitbucket.org/fishawackdigital/lab-env/commits/f20e33b01c3c2d54adf5e696727001fde6f80aa7))
8
+
9
+ ### 4.41.1 (2025-07-24)
10
+
11
+ #### Bug Fixes
12
+
13
+ * better check for vue projects that doesnt run on non vue projects ([b674d25](https://bitbucket.org/fishawackdigital/lab-env/commits/b674d25057306bac7f231e1bd898a085df55be9b))
14
+
3
15
  ### 4.41.1-beta.1 (2025-07-24)
4
16
 
5
17
  #### Bug Fixes
@@ -24,7 +24,7 @@ module.exports.request = async (username, password, host) => {
24
24
  if (
25
25
  !(await new Promise((resolve, reject) => {
26
26
  exec(
27
- `curl -I -k --ftp-ssl --ftp-pasv -u "${username.replace("$", "\\$")}:${password}" ftp://${host}`,
27
+ `curl -I -k --ssl-reqd --ftp-pasv -u "${username.replace("$", "\\$")}:${password}" ftp://${host}`,
28
28
  (error, stdout) => {
29
29
  if (error) {
30
30
  reject(error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.41.1-beta.1",
3
+ "version": "4.41.2-beta.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {