@fishawack/lab-env 4.46.1 → 4.47.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 +14 -0
- package/cli.js +1 -1
- package/commands/test.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.47.0 (2025-09-12)
|
|
4
|
+
|
|
5
|
+
#### Features
|
|
6
|
+
|
|
7
|
+
* allow script on python projectS ([e8df8aa](https://bitbucket.org/fishawackdigital/lab-env/commits/e8df8aa868191c820fdc78b5c53dd6d14f3aac91))
|
|
8
|
+
* show logs during pytests ([2bf85af](https://bitbucket.org/fishawackdigital/lab-env/commits/2bf85af112427073ce6c03f90292e059de6be3d6))
|
|
9
|
+
|
|
10
|
+
### 4.47.0-beta.1 (2025-09-12)
|
|
11
|
+
|
|
12
|
+
#### Features
|
|
13
|
+
|
|
14
|
+
* allow script on python projectS ([e8df8aa](https://bitbucket.org/fishawackdigital/lab-env/commits/e8df8aa868191c820fdc78b5c53dd6d14f3aac91))
|
|
15
|
+
* show logs during pytests ([2bf85af](https://bitbucket.org/fishawackdigital/lab-env/commits/2bf85af112427073ce6c03f90292e059de6be3d6))
|
|
16
|
+
|
|
3
17
|
### 4.46.1 (2025-09-12)
|
|
4
18
|
|
|
5
19
|
#### Bug Fixes
|
package/cli.js
CHANGED
|
@@ -48,6 +48,7 @@ const args = hideBin(process.argv);
|
|
|
48
48
|
"lint",
|
|
49
49
|
"workspace",
|
|
50
50
|
"npm",
|
|
51
|
+
"script",
|
|
51
52
|
],
|
|
52
53
|
|
|
53
54
|
// Web development commands (for frameworks that build frontend assets)
|
|
@@ -59,7 +60,6 @@ const args = hideBin(process.argv);
|
|
|
59
60
|
"uninstall",
|
|
60
61
|
"clean",
|
|
61
62
|
"regenerate",
|
|
62
|
-
"script",
|
|
63
63
|
],
|
|
64
64
|
|
|
65
65
|
// Platform-specific commands
|
package/commands/test.js
CHANGED