@fishawack/lab-env 4.40.0-beta.1 → 4.40.1-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 +25 -0
- package/commands/create/libs/vars.js +15 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.40.1-beta.1 (2025-07-16)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* lock down minor version of linting packages to avoid mismatch in linting rules ([bb01dfe](https://bitbucket.org/fishawackdigital/lab-env/commits/bb01dfe43c4d9b545593341d38ce2f7b4ffb60f4))
|
|
8
|
+
|
|
9
|
+
### 4.40.0 (2025-07-15)
|
|
10
|
+
|
|
11
|
+
#### Features
|
|
12
|
+
|
|
13
|
+
* can now customize the image platform with a config setting in the image override directory ([07cf41c](https://bitbucket.org/fishawackdigital/lab-env/commits/07cf41ce369af1002bf1ea88d74dba805262fe55))
|
|
14
|
+
* can now override laravel 9 php image ([4c89362](https://bitbucket.org/fishawackdigital/lab-env/commits/4c89362a1ccb8135c3b460dbd6ff23e27509ba4c))
|
|
15
|
+
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* added craftcms specific ignores to lint files ([e40cecd](https://bitbucket.org/fishawackdigital/lab-env/commits/e40cecdbc0f145b1a65f7c8bdfa39d96b3b2f97f))
|
|
19
|
+
* added drupal specific ignores to lint files ([f73eb18](https://bitbucket.org/fishawackdigital/lab-env/commits/f73eb182d906c8894456197ae29edd8c89118ea8))
|
|
20
|
+
* added laravel specific ignores to lint files ([476cc75](https://bitbucket.org/fishawackdigital/lab-env/commits/476cc75a094722a4506d99308fd53db73224491c))
|
|
21
|
+
* ignore _App directory for stream specific builds ([edf9cec](https://bitbucket.org/fishawackdigital/lab-env/commits/edf9cec1cb3cc56baffd5a9e2604bc4d41ce764a))
|
|
22
|
+
* wordpress specific ignores ([78f7cc9](https://bitbucket.org/fishawackdigital/lab-env/commits/78f7cc91b3e3967842aae362c5e465acf09616ff))
|
|
23
|
+
|
|
24
|
+
#### Build Updates
|
|
25
|
+
|
|
26
|
+
* auto open a pr against beta on master publish ([88b7123](https://bitbucket.org/fishawackdigital/lab-env/commits/88b71237be90d7f7490f9447a815b1235071aa86))
|
|
27
|
+
|
|
3
28
|
### 4.40.0-beta.1 (2025-07-15)
|
|
4
29
|
|
|
5
30
|
#### Features
|
|
@@ -73,26 +73,26 @@ module.exports.headers = {
|
|
|
73
73
|
// Required global node modules
|
|
74
74
|
module.exports.globalModules = [
|
|
75
75
|
// HUSKY
|
|
76
|
-
{ package: "husky", version: "9" },
|
|
76
|
+
{ package: "husky", version: "9.1" },
|
|
77
77
|
// COMMITLINT
|
|
78
|
-
{ package: "@commitlint/cli", version: "19" },
|
|
79
|
-
{ package: "@commitlint/config-conventional", version: "19" },
|
|
78
|
+
{ package: "@commitlint/cli", version: "19.8" },
|
|
79
|
+
{ package: "@commitlint/config-conventional", version: "19.8" },
|
|
80
80
|
// PRETTIER
|
|
81
|
-
{ package: "prettier", version: "3" },
|
|
81
|
+
{ package: "prettier", version: "3.5" },
|
|
82
82
|
// ESLINT
|
|
83
|
-
{ package: "@eslint/js", version: "9" },
|
|
84
|
-
{ package: "eslint-config-prettier", version: "10" },
|
|
85
|
-
{ package: "eslint-plugin-import", version: "2" },
|
|
86
|
-
{ package: "eslint-plugin-prettier", version: "5" },
|
|
87
|
-
{ package: "eslint-plugin-vue", version: "10" },
|
|
88
|
-
{ package: "eslint", version: "9" },
|
|
89
|
-
{ package: "globals", version: "16" },
|
|
83
|
+
{ package: "@eslint/js", version: "9.27" },
|
|
84
|
+
{ package: "eslint-config-prettier", version: "10.1" },
|
|
85
|
+
{ package: "eslint-plugin-import", version: "2.31" },
|
|
86
|
+
{ package: "eslint-plugin-prettier", version: "5.4" },
|
|
87
|
+
{ package: "eslint-plugin-vue", version: "10.1" },
|
|
88
|
+
{ package: "eslint", version: "9.27" },
|
|
89
|
+
{ package: "globals", version: "16.1" },
|
|
90
90
|
// STYLELINT
|
|
91
|
-
{ package: "stylelint", version: "16" },
|
|
92
|
-
{ package: "stylelint-config-standard-scss", version: "15" },
|
|
93
|
-
{ package: "stylelint-prettier", version: "5" },
|
|
91
|
+
{ package: "stylelint", version: "16.19" },
|
|
92
|
+
{ package: "stylelint-config-standard-scss", version: "15.0" },
|
|
93
|
+
{ package: "stylelint-prettier", version: "5.0" },
|
|
94
94
|
// PHPLINT
|
|
95
|
-
{ package: "@prettier/plugin-php", version: "0" },
|
|
95
|
+
{ package: "@prettier/plugin-php", version: "0.22" },
|
|
96
96
|
];
|
|
97
97
|
|
|
98
98
|
// User presets
|