wexample-wex-addon-dev-javascript 0.0.44__py3-none-any.whl → 0.0.46__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.
@@ -2,14 +2,14 @@ from __future__ import annotations
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
 
5
- from wexample_wex_core.workdir.framework_packages_suite_workdir import (
5
+ from wexample_wex_addon_app.workdir.framework_packages_suite_workdir import (
6
6
  FrameworkPackageSuiteWorkdir,
7
7
  )
8
8
 
9
9
  if TYPE_CHECKING:
10
10
  from pathlib import Path
11
11
 
12
- from wexample_wex_core.workdir.code_base_workdir import CodeBaseWorkdir
12
+ from wexample_wex_addon_app.workdir.code_base_workdir import CodeBaseWorkdir
13
13
 
14
14
 
15
15
  class JavascriptPackagesSuiteWorkdir(FrameworkPackageSuiteWorkdir):
@@ -1,6 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
- from wexample_wex_core.workdir.code_base_workdir import CodeBaseWorkdir
3
+ from wexample_wex_addon_app.workdir.code_base_workdir import CodeBaseWorkdir
4
4
 
5
5
 
6
6
  class JavascriptWorkdir(CodeBaseWorkdir):
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-wex-addon-dev-javascript
3
+ Version: 0.0.46
4
+ Summary: Python dev addon for wex
5
+ Author-Email: weeger <contact@wexample.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: attrs>=23.1.0
13
+ Requires-Dist: cattrs>=23.1.0
14
+ Requires-Dist: wexample-wex-addon-app==0.0.47
15
+ Requires-Dist: wexample-wex-core==6.0.49
16
+ Provides-Extra: dev
17
+ Requires-Dist: pytest; extra == "dev"
18
+ Requires-Dist: pytest-cov; extra == "dev"
19
+ Description-Content-Type: text/markdown
20
+
21
+ # wexample-wex-addon-dev-javascript
22
+
23
+ Version: 0.0.46
24
+
25
+ Python dev addon for wex
26
+
27
+ ## Code Quality & Typing
28
+
29
+ All the suite packages follow strict quality standards:
30
+
31
+ - **Type hints**: Full type coverage with mypy validation
32
+ - **Code formatting**: Enforced with black and isort
33
+ - **Linting**: Comprehensive checks with custom scripts and tools
34
+ - **Testing**: High test coverage requirements
35
+
36
+ These standards ensure reliability and maintainability across the suite.
37
+
38
+ ## Versioning & Compatibility Policy
39
+
40
+ Wexample packages follow **Semantic Versioning** (SemVer):
41
+
42
+ - **MAJOR**: Breaking changes
43
+ - **MINOR**: New features, backward compatible
44
+ - **PATCH**: Bug fixes, backward compatible
45
+
46
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
47
+
48
+ ## Changelog
49
+
50
+ See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
51
+
52
+ Major changes are documented with migration guides when applicable.
53
+
54
+ ## Migration Notes
55
+
56
+ When upgrading between major versions, refer to the migration guides in the documentation.
57
+
58
+ Breaking changes are clearly documented with upgrade paths and examples.
59
+
60
+ ## Known Limitations & Roadmap
61
+
62
+ Current limitations and planned features are tracked in the GitHub issues.
63
+
64
+ See the [project roadmap](https://github.com/wexample/python-wex-dev-python/issues) for upcoming features and improvements.
65
+
66
+ ## Security Policy
67
+
68
+ ### Reporting Vulnerabilities
69
+
70
+ If you discover a security vulnerability, please email security@wexample.com.
71
+
72
+ **Do not** open public issues for security vulnerabilities.
73
+
74
+ We take security seriously and will respond promptly to verified reports.
75
+
76
+ ## Privacy & Telemetry
77
+
78
+ This package does **not** collect any telemetry or usage data.
79
+
80
+ Your privacy is respected — no data is transmitted to external services.
81
+
82
+ ## Support Channels
83
+
84
+ - **GitHub Issues**: Bug reports and feature requests
85
+ - **GitHub Discussions**: Questions and community support
86
+ - **Documentation**: Comprehensive guides and API reference
87
+ - **Email**: contact@wexample.com for general inquiries
88
+
89
+ Community support is available through GitHub Discussions.
90
+
91
+ ## Contribution Guidelines
92
+
93
+ We welcome contributions to the Wexample suite!
94
+
95
+ ### How to Contribute
96
+
97
+ 1. **Fork** the repository
98
+ 2. **Create** a feature branch
99
+ 3. **Make** your changes
100
+ 4. **Test** thoroughly
101
+ 5. **Submit** a pull request
102
+
103
+ ## Maintainers & Authors
104
+
105
+ Maintained by the Wexample team and community contributors.
106
+
107
+ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
108
+
109
+ ## License
110
+
111
+ MIT
112
+
113
+ ## Useful Links
114
+
115
+ - **Homepage**: https://github.com/wexample/python-wex-dev-python
116
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
117
+ - **Issue Tracker**: https://github.com/wexample/python-wex-dev-python/issues
118
+ - **Discussions**: https://github.com/wexample/python-wex-dev-python/discussions
119
+ - **PyPI**: [pypi.org/project/wexample-wex-addon-dev-javascript](https://pypi.org/project/wexample-wex-addon-dev-javascript/)
120
+
121
+ ## Integration in the Suite
122
+
123
+ This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
124
+
125
+ ### Related Packages
126
+
127
+ 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.
128
+
129
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
130
+
131
+ # About us
132
+
133
+ Wexample 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.
134
+
135
+ 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.
136
+
137
+ 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.
138
+
@@ -1,11 +1,12 @@
1
- wexample_wex_addon_dev_javascript-0.0.44.dist-info/METADATA,sha256=VSwclviFpJeCIzflbOAnCPVotlZ1NEHJOKRJIC6SNsg,1230
2
- wexample_wex_addon_dev_javascript-0.0.44.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
- wexample_wex_addon_dev_javascript-0.0.44.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_javascript-0.0.46.dist-info/METADATA,sha256=p3yjZZz14KrHCiuXk2SYrbKP3c0kT27sFQ1_c-Cyle0,5144
2
+ wexample_wex_addon_dev_javascript-0.0.46.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
+ wexample_wex_addon_dev_javascript-0.0.46.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
4
  wexample_wex_addon_dev_javascript/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ wexample_wex_addon_dev_javascript/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
6
  wexample_wex_addon_dev_javascript/javascript_addon_manager.py,sha256=Sjr0CEtNtF3211j1lMtg-pw56zd6unCGNIY7nScddpI,180
6
7
  wexample_wex_addon_dev_javascript/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
8
  wexample_wex_addon_dev_javascript/workdir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
9
  wexample_wex_addon_dev_javascript/workdir/javascript_package_workdir.py,sha256=AdUZ_d_sfqyRTmyG2YGloIbcIybmeYekwa0OaxVFT0w,466
9
- wexample_wex_addon_dev_javascript/workdir/javascript_packages_suite_workdir.py,sha256=127bltJeCbz2aqEHnVkHxkGENojyT9LtmwF0PtsX1Bo,845
10
- wexample_wex_addon_dev_javascript/workdir/javascript_workdir.py,sha256=NKYijvalO8CBgycR9UWBjc2Re8sAasA9R6nIq7ZSFkg,253
11
- wexample_wex_addon_dev_javascript-0.0.44.dist-info/RECORD,,
10
+ wexample_wex_addon_dev_javascript/workdir/javascript_packages_suite_workdir.py,sha256=l9zHC5-1v8yPBdZGS7Ibxp3iklI-czXkRuPxALbz4Gk,855
11
+ wexample_wex_addon_dev_javascript/workdir/javascript_workdir.py,sha256=tlktZ9-gd3Q_Pfsp1QC493XZmw2Kpcatnu8EZIAOdbk,258
12
+ wexample_wex_addon_dev_javascript-0.0.46.dist-info/RECORD,,
@@ -1,52 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wexample-wex-addon-dev-javascript
3
- Version: 0.0.44
4
- Summary: Python dev addon for wex
5
- Author-Email: weeger <contact@wexample.com>
6
- License: MIT
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
- Requires-Python: >=3.10
12
- Requires-Dist: attrs>=23.1.0
13
- Requires-Dist: cattrs>=23.1.0
14
- Requires-Dist: wexample-wex-core==6.0.47
15
- Provides-Extra: dev
16
- Requires-Dist: pytest; extra == "dev"
17
- Description-Content-Type: text/markdown
18
-
19
- # wexample-wex-addon-dev-javascript
20
-
21
- Python dev addon for wex
22
-
23
- Version: 0.0.43
24
-
25
- ## Requirements
26
-
27
- - Python >=3.10
28
-
29
- ## Dependencies
30
-
31
- - attrs>=23.1.0
32
- - cattrs>=23.1.0
33
- - wexample-wex-core==6.0.46
34
-
35
- ## Installation
36
-
37
- ```bash
38
- pip install wexample-wex-addon-dev-javascript
39
- ```
40
-
41
- ## Links
42
-
43
- - Homepage: https://github.com/wexample/python-wex-dev-python
44
-
45
- ## License
46
-
47
- MIT
48
- ## Credits
49
-
50
- This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
51
-
52
- Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.