wexample-wex-addon-dev-flutter 6.3.2__tar.gz → 6.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.
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/PKG-INFO +2 -2
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/README.md +1 -1
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/pyproject.toml +1 -1
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/file/flutter_pubspec_yaml_file.py +5 -5
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/__pycache__/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/config_value/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/config_value/flutter_package_readme_config_value.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/file/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/flutter_addon_manager.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/py.typed +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/workdir/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_package_workdir.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_packages_suite_workdir.py +0 -0
- {wexample_wex_addon_dev_flutter-6.3.2 → wexample_wex_addon_dev_flutter-6.4.0}/src/wexample_wex_addon_dev_flutter/workdir/flutter_workdir.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-wex-addon-dev-flutter
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.4.0
|
|
4
4
|
Summary: Python dev addon for wex
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
|
|
21
21
|
# wex_addon_dev_flutter
|
|
22
22
|
|
|
23
|
-
Version: 6.
|
|
23
|
+
Version: 6.4.0
|
|
24
24
|
|
|
25
25
|
Python dev addon for wex
|
|
26
26
|
|
|
@@ -48,11 +48,11 @@ class FlutterPubspecYamlFile(YamlFile):
|
|
|
48
48
|
) -> dict[str, str]:
|
|
49
49
|
config = self.read_config()
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
)
|
|
54
|
-
dev_dependencies =
|
|
55
|
-
|
|
51
|
+
# Use to_dict_or_none() (not get_dict_or_default) so nested ConfigValue
|
|
52
|
+
# wrappers are unwrapped to native str — matches the dict[str, str] signature.
|
|
53
|
+
dependencies = config.search(path="dependencies").to_dict_or_none() or {}
|
|
54
|
+
dev_dependencies = (
|
|
55
|
+
config.search(path="dev_dependencies").to_dict_or_none() or {}
|
|
56
56
|
)
|
|
57
57
|
|
|
58
58
|
merged = dict(dependencies)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|