fastled 1.3.38__tar.gz → 1.4.0__tar.gz
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.
- {fastled-1.3.38/src/fastled.egg-info → fastled-1.4.0}/PKG-INFO +42 -1
- fastled-1.3.38/PKG-INFO → fastled-1.4.0/README.md +39 -28
- {fastled-1.3.38 → fastled-1.4.0}/install +1 -1
- {fastled-1.3.38 → fastled-1.4.0}/pyproject.toml +5 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/__init__.py +0 -1
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/__version__.py +1 -1
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/client_server.py +10 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/open_browser.py +40 -8
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/parse_args.py +3 -3
- fastled-1.4.0/src/fastled/playwright_browser.py +495 -0
- fastled-1.3.38/README.md → fastled-1.4.0/src/fastled.egg-info/PKG-INFO +69 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled.egg-info/SOURCES.txt +2 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled.egg-info/requires.txt +3 -0
- fastled-1.4.0/tests/integration/test_playwright_integration.py +61 -0
- {fastled-1.3.38 → fastled-1.4.0}/.aiderignore +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.cursorrules +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.dockerignore +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/build_multi_docker_image.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/build_webpage.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/lint.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/publish_release.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/template_build_docker_image.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/test_build_exe.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/test_macos.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/test_ubuntu.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.github/workflows/test_win.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.gitignore +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.pylintrc +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.vscode/launch.json +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.vscode/settings.json +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/.vscode/tasks.json +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/DEBUGGER.md +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/Dockerfile +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/FAQ.md +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/LICENSE +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/MANIFEST.in +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/RELEASE.md +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/TODO.md +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/build_exe.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/build_local_docker.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/build_site.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/clean +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/compiler/debug.sh +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/compiler/run.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/demo/100dots.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/demo/demo_threejs.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/demo/micdemo.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/demo/mp3upload.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/demo/webgl_postprocessing_unreal_bloom.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/docker-compose.yml +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/entrypoint.sh +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/install_linux.sh +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/lint +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/requirements.docker.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/requirements.testing.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/setup.cfg +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/setup.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/__main__.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/app.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/args.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/assets/example.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/assets/localhost-key.pem +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/assets/localhost.pem +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/cli.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/cli_test.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/cli_test_interactive.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/compile_server.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/compile_server_impl.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/docker_manager.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/filewatcher.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/keyboard.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/keyz.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/live_client.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/paths.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/print_filter.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/project_init.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/select_sketch_directory.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/server_flask.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/server_start.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/settings.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/site/build.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/site/examples.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/sketch.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/spinner.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/string_diff.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/test/can_run_local_docker_tests.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/test/examples.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/types.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/util.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/version.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled/web_compile.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled.egg-info/dependency_links.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled.egg-info/entry_points.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/src/fastled.egg-info/top_level.txt +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/test +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/integration/test_build_examples.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/integration/test_examples.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/html/index.html +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_api.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_bad_ino.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_banner_string.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_cli.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_cli_no_platformio.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_compile_server.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_debug_fetch_source_files.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_docker_linux_on_windows.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_embedded_data.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_filechanger.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_flask_headers.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_http_server.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/bad/bad.ino +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/bad_platformio/bad_platformio.ino +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/bad_platformio/platformio.ini +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/embedded/data/bigdata.dat +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/embedded/wasm.ino +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_ino/wasm/wasm.ino +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_manual_api_invocation.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_no_platformio_compile.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_project_init.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_server_and_client_seperatly.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_session_compile.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_string_diff.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_string_diff_comprehensive.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_version.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/tests/unit/test_webcompile.py +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/upload_package.sh +0 -0
- {fastled-1.3.38 → fastled-1.4.0}/vscode-plugin/readme +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fastled
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.4.0
|
4
4
|
Summary: FastLED Wasm Compiler
|
5
5
|
Home-page: https://github.com/zackees/fastled-wasm
|
6
6
|
Maintainer: Zachary Vorhies
|
@@ -22,6 +22,8 @@ Requires-Dist: Flask>=3.0.0
|
|
22
22
|
Requires-Dist: flask-cors>=4.0.0
|
23
23
|
Requires-Dist: livereload
|
24
24
|
Requires-Dist: disklru>=2.0.4
|
25
|
+
Provides-Extra: full
|
26
|
+
Requires-Dist: playwright>=1.40.0; extra == "full"
|
25
27
|
Dynamic: home-page
|
26
28
|
Dynamic: license-file
|
27
29
|
Dynamic: maintainer
|
@@ -71,7 +73,34 @@ $ cd mysketchdirectory
|
|
71
73
|
$ fastled
|
72
74
|
```
|
73
75
|
|
76
|
+
## Playwright Browser Support
|
74
77
|
|
78
|
+
For enhanced browser control and automation capabilities, you can install the full version with Playwright support:
|
79
|
+
|
80
|
+
```bash
|
81
|
+
$ pip install fastled[full]
|
82
|
+
```
|
83
|
+
|
84
|
+
When installed, FastLED will automatically use Playwright to open your compiled sketch in a controlled browser environment instead of your system's default browser:
|
85
|
+
|
86
|
+
```bash
|
87
|
+
$ fastled my_sketch
|
88
|
+
```
|
89
|
+
|
90
|
+
The Playwright browser provides better automation capabilities and is especially useful for:
|
91
|
+
- Automated testing of your LED sketches
|
92
|
+
- Consistent cross-platform browser behavior
|
93
|
+
- Advanced debugging and development workflows
|
94
|
+
- Persistent browser sessions that stay open until the FastLED process exits
|
95
|
+
|
96
|
+
**Key Benefits:**
|
97
|
+
- Automatically enabled when `fastled[full]` is installed - no additional flags needed
|
98
|
+
- The Playwright browser remains open throughout your development session
|
99
|
+
- Automatic cleanup when the FastLED process exits
|
100
|
+
- Better control over browser behavior and automation capabilities
|
101
|
+
- Consistent behavior across different platforms
|
102
|
+
|
103
|
+
If Playwright is not installed, the system will gracefully fall back to your default browser.
|
75
104
|
|
76
105
|
# Install
|
77
106
|
|
@@ -81,14 +110,26 @@ This is a python app, so any python package manager will work. We also provide p
|
|
81
110
|
|
82
111
|
`pip install fastled`
|
83
112
|
|
113
|
+
### Pip with Playwright Support
|
114
|
+
|
115
|
+
`pip install fastled[full]`
|
116
|
+
|
84
117
|
### UV
|
85
118
|
|
86
119
|
`uv pip install fastled --system`
|
87
120
|
|
121
|
+
### UV with Playwright Support
|
122
|
+
|
123
|
+
`uv pip install "fastled[full]" --system`
|
124
|
+
|
88
125
|
### Pipx
|
89
126
|
|
90
127
|
`pipx install fastled`
|
91
128
|
|
129
|
+
### Pipx with Playwright Support
|
130
|
+
|
131
|
+
`pipx install "fastled[full]"`
|
132
|
+
|
92
133
|
### Executables
|
93
134
|
|
94
135
|
* Windows: https://github.com/zackees/fastled-wasm/releases/latest/download/fastled-windows-x64.zip
|
@@ -1,31 +1,3 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: fastled
|
3
|
-
Version: 1.3.38
|
4
|
-
Summary: FastLED Wasm Compiler
|
5
|
-
Home-page: https://github.com/zackees/fastled-wasm
|
6
|
-
Maintainer: Zachary Vorhies
|
7
|
-
License: BSD 3-Clause License
|
8
|
-
Keywords: template-python-cmd
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
10
|
-
Requires-Python: >=3.10
|
11
|
-
Description-Content-Type: text/markdown
|
12
|
-
License-File: LICENSE
|
13
|
-
Requires-Dist: httpx>=0.28.1
|
14
|
-
Requires-Dist: watchdog>=6.0.0
|
15
|
-
Requires-Dist: docker>=7.1.0
|
16
|
-
Requires-Dist: filelock>=3.16.1
|
17
|
-
Requires-Dist: appdirs>=1.4.4
|
18
|
-
Requires-Dist: rapidfuzz>=3.10.1
|
19
|
-
Requires-Dist: progress>=1.6
|
20
|
-
Requires-Dist: watchfiles>=1.0.5
|
21
|
-
Requires-Dist: Flask>=3.0.0
|
22
|
-
Requires-Dist: flask-cors>=4.0.0
|
23
|
-
Requires-Dist: livereload
|
24
|
-
Requires-Dist: disklru>=2.0.4
|
25
|
-
Dynamic: home-page
|
26
|
-
Dynamic: license-file
|
27
|
-
Dynamic: maintainer
|
28
|
-
|
29
1
|
# FastLED Wasm compiler
|
30
2
|
|
31
3
|
[](https://github.com/zackees/fastled-wasm/actions/workflows/lint.yml)
|
@@ -71,7 +43,34 @@ $ cd mysketchdirectory
|
|
71
43
|
$ fastled
|
72
44
|
```
|
73
45
|
|
46
|
+
## Playwright Browser Support
|
47
|
+
|
48
|
+
For enhanced browser control and automation capabilities, you can install the full version with Playwright support:
|
49
|
+
|
50
|
+
```bash
|
51
|
+
$ pip install fastled[full]
|
52
|
+
```
|
53
|
+
|
54
|
+
When installed, FastLED will automatically use Playwright to open your compiled sketch in a controlled browser environment instead of your system's default browser:
|
55
|
+
|
56
|
+
```bash
|
57
|
+
$ fastled my_sketch
|
58
|
+
```
|
74
59
|
|
60
|
+
The Playwright browser provides better automation capabilities and is especially useful for:
|
61
|
+
- Automated testing of your LED sketches
|
62
|
+
- Consistent cross-platform browser behavior
|
63
|
+
- Advanced debugging and development workflows
|
64
|
+
- Persistent browser sessions that stay open until the FastLED process exits
|
65
|
+
|
66
|
+
**Key Benefits:**
|
67
|
+
- Automatically enabled when `fastled[full]` is installed - no additional flags needed
|
68
|
+
- The Playwright browser remains open throughout your development session
|
69
|
+
- Automatic cleanup when the FastLED process exits
|
70
|
+
- Better control over browser behavior and automation capabilities
|
71
|
+
- Consistent behavior across different platforms
|
72
|
+
|
73
|
+
If Playwright is not installed, the system will gracefully fall back to your default browser.
|
75
74
|
|
76
75
|
# Install
|
77
76
|
|
@@ -81,14 +80,26 @@ This is a python app, so any python package manager will work. We also provide p
|
|
81
80
|
|
82
81
|
`pip install fastled`
|
83
82
|
|
83
|
+
### Pip with Playwright Support
|
84
|
+
|
85
|
+
`pip install fastled[full]`
|
86
|
+
|
84
87
|
### UV
|
85
88
|
|
86
89
|
`uv pip install fastled --system`
|
87
90
|
|
91
|
+
### UV with Playwright Support
|
92
|
+
|
93
|
+
`uv pip install "fastled[full]" --system`
|
94
|
+
|
88
95
|
### Pipx
|
89
96
|
|
90
97
|
`pipx install fastled`
|
91
98
|
|
99
|
+
### Pipx with Playwright Support
|
100
|
+
|
101
|
+
`pipx install "fastled[full]"`
|
102
|
+
|
92
103
|
### Executables
|
93
104
|
|
94
105
|
* Windows: https://github.com/zackees/fastled-wasm/releases/latest/download/fastled-windows-x64.zip
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# IMPORTANT! There's a bug in github which will REJECT any version update
|
2
2
|
# that has any other change in the repo. Please bump the version as the
|
3
3
|
# ONLY change in a commit, or else the pypi update and the release will fail.
|
4
|
-
__version__ = "1.
|
4
|
+
__version__ = "1.4.0"
|
5
5
|
|
6
6
|
__version_url_latest__ = "https://raw.githubusercontent.com/zackees/fastled-wasm/refs/heads/main/src/fastled/__version__.py"
|
@@ -25,6 +25,16 @@ from fastled.web_compile import (
|
|
25
25
|
)
|
26
26
|
|
27
27
|
|
28
|
+
def _always_false() -> bool:
|
29
|
+
return False
|
30
|
+
|
31
|
+
|
32
|
+
try:
|
33
|
+
from fastled.playwright_browser import is_playwright_available
|
34
|
+
except ImportError:
|
35
|
+
is_playwright_available = _always_false
|
36
|
+
|
37
|
+
|
28
38
|
def _create_error_html(error_message: str) -> str:
|
29
39
|
return f"""<!DOCTYPE html>
|
30
40
|
<html>
|
@@ -8,6 +8,29 @@ from pathlib import Path
|
|
8
8
|
|
9
9
|
from fastled.server_flask import run_flask_in_thread
|
10
10
|
|
11
|
+
try:
|
12
|
+
from fastled.playwright_browser import is_playwright_available, open_with_playwright
|
13
|
+
|
14
|
+
PLAYWRIGHT_AVAILABLE = is_playwright_available()
|
15
|
+
except ImportError:
|
16
|
+
PLAYWRIGHT_AVAILABLE = False
|
17
|
+
open_with_playwright = None
|
18
|
+
|
19
|
+
# Global reference to keep Playwright browser alive
|
20
|
+
_playwright_browser_proxy = None
|
21
|
+
|
22
|
+
|
23
|
+
def cleanup_playwright_browser() -> None:
|
24
|
+
"""Clean up the Playwright browser on exit."""
|
25
|
+
global _playwright_browser_proxy
|
26
|
+
if _playwright_browser_proxy:
|
27
|
+
_playwright_browser_proxy.close()
|
28
|
+
_playwright_browser_proxy = None
|
29
|
+
|
30
|
+
|
31
|
+
# Register cleanup function
|
32
|
+
atexit.register(cleanup_playwright_browser)
|
33
|
+
|
11
34
|
DEFAULT_PORT = 8089 # different than live version.
|
12
35
|
PYTHON_EXE = sys.executable
|
13
36
|
|
@@ -105,14 +128,23 @@ def spawn_http_server(
|
|
105
128
|
|
106
129
|
wait_for_server(port)
|
107
130
|
if open_browser:
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
131
|
+
url = f"http://localhost:{port}"
|
132
|
+
if PLAYWRIGHT_AVAILABLE and open_with_playwright is not None:
|
133
|
+
print(f"Opening FastLED sketch in Playwright browser: {url}")
|
134
|
+
print(
|
135
|
+
"Auto-resize enabled: Browser window will automatically adjust to content size"
|
136
|
+
)
|
137
|
+
global _playwright_browser_proxy
|
138
|
+
_playwright_browser_proxy = open_with_playwright(url)
|
139
|
+
else:
|
140
|
+
print(f"Opening browser to {url}")
|
141
|
+
import webbrowser
|
142
|
+
|
143
|
+
webbrowser.open(
|
144
|
+
url=url,
|
145
|
+
new=1,
|
146
|
+
autoraise=True,
|
147
|
+
)
|
116
148
|
return proc
|
117
149
|
|
118
150
|
|
@@ -82,8 +82,8 @@ def parse_args() -> Args:
|
|
82
82
|
parser.add_argument(
|
83
83
|
"--ram-disk-size",
|
84
84
|
type=str,
|
85
|
-
default="
|
86
|
-
help="
|
85
|
+
default="1gb",
|
86
|
+
help="Size of the RAM disk for compilation (e.g., '1gb', '512mb')",
|
87
87
|
)
|
88
88
|
parser.add_argument(
|
89
89
|
"--web",
|
@@ -113,7 +113,7 @@ def parse_args() -> Args:
|
|
113
113
|
parser.add_argument(
|
114
114
|
"--no-auto-updates",
|
115
115
|
action="store_true",
|
116
|
-
help="Disable automatic updates of the wasm compiler image when using docker.",
|
116
|
+
help="Disable automatic updates of the wasm compiler image when using docker. (Default: False)",
|
117
117
|
)
|
118
118
|
parser.add_argument(
|
119
119
|
"--no-platformio",
|