wexample-wex-addon-dev-javascript 0.0.42__tar.gz → 0.0.45__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.
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/PKG-INFO +8 -6
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/README.md +4 -3
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/pyproject.toml +4 -6
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/workdir/javascript_package_workdir.py +5 -2
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/__init__.py +0 -0
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/javascript_addon_manager.py +0 -0
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/py.typed +0 -0
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/workdir/__init__.py +0 -0
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/workdir/javascript_packages_suite_workdir.py +6 -6
- {wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/src/wexample_wex_addon_dev_javascript/workdir/javascript_workdir.py +0 -0
{wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-wex-addon-dev-javascript
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.45
|
|
4
4
|
Summary: Python dev addon for wex
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -9,8 +9,9 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
|
-
Requires-Dist:
|
|
13
|
-
Requires-Dist:
|
|
12
|
+
Requires-Dist: attrs>=23.1.0
|
|
13
|
+
Requires-Dist: cattrs>=23.1.0
|
|
14
|
+
Requires-Dist: wexample-wex-core==6.0.48
|
|
14
15
|
Provides-Extra: dev
|
|
15
16
|
Requires-Dist: pytest; extra == "dev"
|
|
16
17
|
Description-Content-Type: text/markdown
|
|
@@ -19,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
19
20
|
|
|
20
21
|
Python dev addon for wex
|
|
21
22
|
|
|
22
|
-
Version: 0.0.
|
|
23
|
+
Version: 0.0.43
|
|
23
24
|
|
|
24
25
|
## Requirements
|
|
25
26
|
|
|
@@ -27,8 +28,9 @@ Version: 0.0.42
|
|
|
27
28
|
|
|
28
29
|
## Dependencies
|
|
29
30
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
31
|
+
- attrs>=23.1.0
|
|
32
|
+
- cattrs>=23.1.0
|
|
33
|
+
- wexample-wex-core==6.0.46
|
|
32
34
|
|
|
33
35
|
## Installation
|
|
34
36
|
|
{wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/README.md
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Python dev addon for wex
|
|
4
4
|
|
|
5
|
-
Version: 0.0.
|
|
5
|
+
Version: 0.0.43
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
@@ -10,8 +10,9 @@ Version: 0.0.42
|
|
|
10
10
|
|
|
11
11
|
## Dependencies
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
13
|
+
- attrs>=23.1.0
|
|
14
|
+
- cattrs>=23.1.0
|
|
15
|
+
- wexample-wex-core==6.0.46
|
|
15
16
|
|
|
16
17
|
## Installation
|
|
17
18
|
|
{wexample_wex_addon_dev_javascript-0.0.42 → wexample_wex_addon_dev_javascript-0.0.45}/pyproject.toml
RENAMED
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-wex-addon-dev-javascript"
|
|
9
|
-
version = "0.0.
|
|
9
|
+
version = "0.0.45"
|
|
10
10
|
description = "Python dev addon for wex"
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -18,8 +18,9 @@ classifiers = [
|
|
|
18
18
|
"Operating System :: OS Independent",
|
|
19
19
|
]
|
|
20
20
|
dependencies = [
|
|
21
|
-
"
|
|
22
|
-
"
|
|
21
|
+
"attrs>=23.1.0",
|
|
22
|
+
"cattrs>=23.1.0",
|
|
23
|
+
"wexample-wex-core==6.0.48",
|
|
23
24
|
]
|
|
24
25
|
|
|
25
26
|
[project.readme]
|
|
@@ -41,9 +42,6 @@ dev = [
|
|
|
41
42
|
distribution = true
|
|
42
43
|
|
|
43
44
|
[tool.pdm.build]
|
|
44
|
-
includes = [
|
|
45
|
-
"src/wexample_wex_addon_dev_javascript/*",
|
|
46
|
-
]
|
|
47
45
|
package-dir = "src"
|
|
48
46
|
packages = [
|
|
49
47
|
{ include = "wexample_wex_addon_dev_javascript", from = "src" },
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
from
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
4
5
|
from wexample_wex_addon_dev_javascript.workdir.javascript_workdir import (
|
|
5
6
|
JavascriptWorkdir,
|
|
6
7
|
)
|
|
7
8
|
|
|
9
|
+
if TYPE_CHECKING:
|
|
10
|
+
from wexample_config.const.types import DictConfig
|
|
11
|
+
|
|
8
12
|
|
|
9
13
|
class JavascriptPackageWorkdir(JavascriptWorkdir):
|
|
10
14
|
def prepare_value(self, raw_value: DictConfig | None = None) -> DictConfig:
|
|
11
|
-
|
|
12
15
|
raw_value = super().prepare_value(raw_value=raw_value)
|
|
13
16
|
|
|
14
17
|
return raw_value
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -13,15 +13,15 @@ if TYPE_CHECKING:
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
class JavascriptPackagesSuiteWorkdir(FrameworkPackageSuiteWorkdir):
|
|
16
|
+
def _child_is_package_directory(self, entry: Path) -> bool:
|
|
17
|
+
return entry.is_dir() and (entry / "package.json").is_file()
|
|
18
|
+
|
|
19
|
+
def _get_children_package_directory_name(self) -> str:
|
|
20
|
+
return "npm"
|
|
21
|
+
|
|
16
22
|
def _get_children_package_workdir_class(self) -> type[CodeBaseWorkdir]:
|
|
17
23
|
from wexample_wex_addon_dev_javascript.workdir.javascript_package_workdir import (
|
|
18
24
|
JavascriptPackageWorkdir,
|
|
19
25
|
)
|
|
20
26
|
|
|
21
27
|
return JavascriptPackageWorkdir
|
|
22
|
-
|
|
23
|
-
def _get_children_package_directory_name(self) -> str:
|
|
24
|
-
return "npm"
|
|
25
|
-
|
|
26
|
-
def _child_is_package_directory(self, entry: Path) -> bool:
|
|
27
|
-
return entry.is_dir() and (entry / "package.json").is_file()
|