@fishawack/lab-env 4.0.0 → 4.1.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,11 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.1.1 (2022-09-22)
4
+ * [Bug] Use $* instead of $@ to expand as a single argument to stop -d being parsed by lab-env itself during zip/unzip calls
5
+
6
+ ### 4.1.0 (2022-09-22)
7
+ * [Feature] Unzip and zip commands found in _Scripts are now caught and piped into core
8
+
3
9
  ### 4.0.0 (2022-09-12)
4
10
  * [Feature] Added new s3Safe repo to enforce safe s3 service names
5
11
  * [Feature] Added newly setup AWS accounts to the client prompts on `fw provision`
package/intercept.sh CHANGED
@@ -40,6 +40,14 @@ sed(){
40
40
  command lab-env exec "sed $@"
41
41
  }
42
42
 
43
+ unzip(){
44
+ command lab-env exec "unzip $*"
45
+ }
46
+
47
+ zip(){
48
+ command lab-env exec "zip $*"
49
+ }
50
+
43
51
  export -f npm;
44
52
  export -f composer;
45
53
  export -f drush;
@@ -50,3 +58,5 @@ export -f php;
50
58
  export -f chown;
51
59
  export -f chmod;
52
60
  export -f sed;
61
+ export -f unzip;
62
+ export -f zip;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.0.0",
3
+ "version": "4.1.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {