@fishawack/lab-env 4.46.1 → 4.47.0-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,12 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.47.0-beta.1 (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
+
3
10
  ### 4.46.1 (2025-09-12)
4
11
 
5
12
  #### 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
@@ -7,7 +7,7 @@ module.exports = [
7
7
  () => {
8
8
  _.up(() => {
9
9
  if (_.platform === "python") {
10
- _.command("python", `uv run pytest`);
10
+ _.command("python", `uv run pytest -o log_cli=true`);
11
11
  } else {
12
12
  _.command(
13
13
  "core",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.46.1",
3
+ "version": "4.47.0-beta.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {