wexample-wex-addon-dev-javascript 0.1.1__py3-none-any.whl → 7.0.1__py3-none-any.whl

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.
@@ -0,0 +1,2 @@
1
+ filestate:
2
+ python_init: false
@@ -0,0 +1,2 @@
1
+ filestate:
2
+ python_init: false
@@ -0,0 +1,15 @@
1
+ services:
2
+ node:
3
+ container_name: ${APP_PROJECT_NAME}_node
4
+ image: node:20-alpine
5
+ working_dir: /var/www/html
6
+ command: tail -f /dev/null
7
+ volumes:
8
+ - ${APP_PATH}:/var/www/html
9
+ - node_modules:/var/www/html/node_modules
10
+ extends:
11
+ file: ${SERVICE_DEFAULT_COMPOSE}
12
+ service: default
13
+
14
+ volumes:
15
+ node_modules:
@@ -0,0 +1,7 @@
1
+ name: node
2
+ tags:
3
+ - javascript
4
+ - node
5
+ - yarn
6
+ docker:
7
+ compose: docker/docker-compose.yml
@@ -0,0 +1,2 @@
1
+ filestate:
2
+ python_init: false
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-javascript
3
- Version: 0.1.1
3
+ Version: 7.0.1
4
4
  Summary: Python dev addon for wex
5
5
  Author-Email: weeger <contact@wexample.com>
6
6
  License: MIT
@@ -12,7 +12,7 @@ Requires-Python: >=3.10
12
12
  Requires-Dist: attrs>=23.1.0
13
13
  Requires-Dist: cattrs>=23.1.0
14
14
  Requires-Dist: wexample-filestate-javascript>=0.1.0
15
- Requires-Dist: wexample-wex-addon-app>=1.1.0
15
+ Requires-Dist: wexample-wex-addon-app>=9.1.0
16
16
  Provides-Extra: dev
17
17
  Requires-Dist: pytest; extra == "dev"
18
18
  Requires-Dist: pytest-cov; extra == "dev"
@@ -20,6 +20,127 @@ Description-Content-Type: text/markdown
20
20
 
21
21
  # wex_addon_dev_javascript
22
22
 
23
+ Version: 7.0.1
24
+
25
+ Python dev addon for wex
26
+
27
+ ## Table of Contents
28
+
29
+ - [Tests](#tests)
30
+ - [Suite Integration](#suite-integration)
31
+ - [Dependencies](#dependencies)
32
+ - [Versioning](#versioning)
33
+ - [License](#license)
34
+ - [Suite Integration](#suite-integration)
35
+ - [Suite Signature](#suite-signature)
36
+ - [Introduction](#introduction)
37
+ - [Roadmap](#roadmap)
38
+ - [Status Compatibility](#status-compatibility)
39
+ - [Useful Links](#useful-links)
40
+ - [Migration Notes](#migration-notes)
41
+
42
+ ## Tests
43
+
44
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
45
+
46
+ ### Installation
47
+
48
+ First, install the required testing dependencies:
49
+ ```bash
50
+ .venv/bin/python -m pip install pytest pytest-cov
51
+ ```
52
+
53
+ ### Basic Usage
54
+
55
+ Run all tests with coverage:
56
+ ```bash
57
+ .venv/bin/python -m pytest --cov --cov-report=html
58
+ ```
59
+
60
+ ### Common Commands
61
+ ```bash
62
+ # Run tests with coverage for a specific module
63
+ .venv/bin/python -m pytest --cov=your_module
64
+
65
+ # Show which lines are not covered
66
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
67
+
68
+ # Generate an HTML coverage report
69
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
70
+
71
+ # Combine terminal and HTML reports
72
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
73
+
74
+ # Run specific test file with coverage
75
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
76
+ ```
77
+
78
+ ### Viewing HTML Reports
79
+
80
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
81
+
82
+ ### Coverage Threshold
83
+
84
+ To enforce a minimum coverage percentage:
85
+ ```bash
86
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
87
+ ```
88
+
89
+ This will cause the test suite to fail if coverage drops below 80%.
90
+
91
+ ## Integration in the Suite
92
+
93
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
94
+
95
+ ### Related Packages
96
+
97
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
98
+
99
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
100
+
101
+ ## Dependencies
102
+
103
+ - attrs: >=23.1.0
104
+ - cattrs: >=23.1.0
105
+ - wexample-filestate-javascript: >=0.1.0
106
+ - wexample-wex-addon-app: >=9.1.0
107
+
108
+ ## Versioning & Compatibility Policy
109
+
110
+ Wexample packages follow **Semantic Versioning** (SemVer):
111
+
112
+ - **MAJOR**: Breaking changes
113
+ - **MINOR**: New features, backward compatible
114
+ - **PATCH**: Bug fixes, backward compatible
115
+
116
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
117
+
118
+ ## License
119
+
120
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
121
+
122
+ Free to use in both personal and commercial projects.
123
+
124
+ ## Integration in the Suite
125
+
126
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
127
+
128
+ ### Related Packages
129
+
130
+ The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
131
+
132
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
133
+
134
+ # About us
135
+
136
+ [Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
137
+
138
+ This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
139
+
140
+ Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
141
+
142
+ # wex_addon_dev_javascript
143
+
23
144
  Version: 0.1.1
24
145
 
25
146
  Python dev addon for wex
@@ -167,3 +288,33 @@ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_javas
167
288
  When upgrading between major versions, refer to the migration guides in the documentation.
168
289
 
169
290
  Breaking changes are clearly documented with upgrade paths and examples.
291
+
292
+ ## Known Limitations & Roadmap
293
+
294
+ Current limitations and planned features are tracked in the GitHub issues.
295
+
296
+ See the [project roadmap](https://github.com/wexample/python-wex_addon_dev_javascript/issues) for upcoming features and improvements.
297
+
298
+ ## Status & Compatibility
299
+
300
+ **Maturity**: Production-ready
301
+
302
+ **Python Support**: >=3.10
303
+
304
+ **OS Support**: Linux, macOS, Windows
305
+
306
+ **Status**: Actively maintained
307
+
308
+ ## Useful Links
309
+
310
+ - **Homepage**: https://github.com/wexample/python-wex-addon-dev-javascript
311
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
312
+ - **Issue Tracker**: https://github.com/wexample/python-wex-addon-dev-javascript/issues
313
+ - **Discussions**: https://github.com/wexample/python-wex-addon-dev-javascript/discussions
314
+ - **PyPI**: [pypi.org/project/wex_addon_dev_javascript](https://pypi.org/project/wex_addon_dev_javascript/)
315
+
316
+ ## Migration Notes
317
+
318
+ When upgrading between major versions, refer to the migration guides in the documentation.
319
+
320
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -1,6 +1,6 @@
1
- wexample_wex_addon_dev_javascript-0.1.1.dist-info/METADATA,sha256=cdAIfCAtUlFaE3tr5LtY-_ecWej56ZNrIN4c-VVIT4c,6147
2
- wexample_wex_addon_dev_javascript-0.1.1.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
- wexample_wex_addon_dev_javascript-0.1.1.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_javascript-7.0.1.dist-info/METADATA,sha256=RoJ0Te0jEEJNYABwLCtdI4IsWyVWJ1G_-l65Df2V5zM,11619
2
+ wexample_wex_addon_dev_javascript-7.0.1.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
+ wexample_wex_addon_dev_javascript-7.0.1.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
4
  wexample_wex_addon_dev_javascript/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  wexample_wex_addon_dev_javascript/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  wexample_wex_addon_dev_javascript/config_value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -10,19 +10,23 @@ wexample_wex_addon_dev_javascript/file/javascript_package_json_file.py,sha256=j0
10
10
  wexample_wex_addon_dev_javascript/file/javascript_tsconfig_json_file.py,sha256=VXetEhBlPNgcsW28Oicnrn83n8xSLMKOEublU7s67-4,1423
11
11
  wexample_wex_addon_dev_javascript/javascript_addon_manager.py,sha256=Sjr0CEtNtF3211j1lMtg-pw56zd6unCGNIY7nScddpI,180
12
12
  wexample_wex_addon_dev_javascript/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- wexample_wex_addon_dev_javascript/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ wexample_wex_addon_dev_javascript/resources/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
14
14
  wexample_wex_addon_dev_javascript/resources/package_publish.yml,sha256=Omw0Ww4I7jsi2uLSNApRR-Ujt6M_56IsXDyDT7hVncc,421
15
15
  wexample_wex_addon_dev_javascript/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ wexample_wex_addon_dev_javascript/services/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ wexample_wex_addon_dev_javascript/services/node/docker/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
18
+ wexample_wex_addon_dev_javascript/services/node/docker/docker-compose.yml,sha256=7OMLJFSSBSU7hbXnJnSvu9D5r0PMXEQvvieqiPnzJOQ,347
19
+ wexample_wex_addon_dev_javascript/services/node/service.yml,sha256=jPLW-E4ymVaEnTwdTjVvTJNx04pwMGN4twxeOuN37mo,95
16
20
  wexample_wex_addon_dev_javascript/services/vite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
21
  wexample_wex_addon_dev_javascript/services/vite/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
22
  wexample_wex_addon_dev_javascript/services/vite/commands/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
23
  wexample_wex_addon_dev_javascript/services/vite/commands/service/install.py,sha256=TzFGnZ-KlvXOuiyKP7TyklQykAdZjT39b52I4PlpMks,1949
20
24
  wexample_wex_addon_dev_javascript/services/vite/commands/service/ready.py,sha256=74CsRbtoOYFBnsxz1dDxnFn2zJaP8MVXGZqRG-3Jy-U,1319
21
- wexample_wex_addon_dev_javascript/services/vite/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ wexample_wex_addon_dev_javascript/services/vite/docker/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
22
26
  wexample_wex_addon_dev_javascript/services/vite/docker/docker-compose.yml,sha256=Xy6h-qnh1vJWObBssie7vZNTN6ibryRrrpszuwgg6ck,612
23
27
  wexample_wex_addon_dev_javascript/services/vite/service.yml,sha256=8mFPv49QbKA3klHFbNK73QOB7ryy38zFeLiQB3gfDys,184
24
28
  wexample_wex_addon_dev_javascript/workdir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
29
  wexample_wex_addon_dev_javascript/workdir/javascript_package_workdir.py,sha256=_6PZgdGO39DofyP_ETXyU6CnNm5J4EzDtlbfKkeWJGk,7826
26
30
  wexample_wex_addon_dev_javascript/workdir/javascript_packages_suite_workdir.py,sha256=l9zHC5-1v8yPBdZGS7Ibxp3iklI-czXkRuPxALbz4Gk,855
27
31
  wexample_wex_addon_dev_javascript/workdir/javascript_workdir.py,sha256=AeDEF34sE7SQKiRqWQEaOjKBZDx0CsbzfngRrqPVSFA,5174
28
- wexample_wex_addon_dev_javascript-0.1.1.dist-info/RECORD,,
32
+ wexample_wex_addon_dev_javascript-7.0.1.dist-info/RECORD,,