wexample-wex-addon-dev-flutter 6.9.0__tar.gz → 6.9.2__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.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/PKG-INFO +6 -6
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/README.md +3 -3
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/pyproject.toml +3 -3
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/__pycache__/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/config_value/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/config_value/flutter_package_readme_config_value.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/file/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/file/flutter_pubspec_yaml_file.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/flutter_addon_manager.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/py.typed +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/workdir/__init__.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/workdir/flutter_package_workdir.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/workdir/flutter_packages_suite_workdir.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/src/wexample_wex_addon_dev_flutter/workdir/flutter_workdir.py +0 -0
- {wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/tests/.gitkeep +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-wex-addon-dev-flutter
|
|
3
|
-
Version: 6.9.
|
|
3
|
+
Version: 6.9.2
|
|
4
4
|
Summary: Extends wex with Flutter workdir types that enforce project file structure, auto-format Dart sources, and publish packages via flutter pub publish
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,8 +12,8 @@ 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-flutter>=6.6.0
|
|
15
|
-
Requires-Dist: wexample-wex-addon-ai>=
|
|
16
|
-
Requires-Dist: wexample-wex-addon-app>=
|
|
15
|
+
Requires-Dist: wexample-wex-addon-ai>=14.1.0
|
|
16
|
+
Requires-Dist: wexample-wex-addon-app>=31.0.0
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest; extra == "dev"
|
|
19
19
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# wex_addon_dev_flutter
|
|
23
23
|
|
|
24
|
-
Version: 6.9.
|
|
24
|
+
Version: 6.9.2
|
|
25
25
|
|
|
26
26
|
A wex addon for developers who maintain Flutter and Dart packages: it registers three workdir types — `flutter`, `flutter-package`, and `flutter-packages-suite` — that enforce the expected directory layout (`pubspec.yaml`, `lib/`, `test/`, `.publignore`), auto-format every `.dart` file via `dart format`, and drive `flutter pub publish` for releases. The `flutter-package` workdir also keeps `pubspec.yaml` consistent, writing the package name, version, and GitHub URLs resolved from the repository remote.
|
|
27
27
|
|
|
@@ -211,8 +211,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
211
211
|
- attrs: >=23.1.0
|
|
212
212
|
- cattrs: >=23.1.0
|
|
213
213
|
- wexample-filestate-flutter: >=6.6.0
|
|
214
|
-
- wexample-wex-addon-ai: >=
|
|
215
|
-
- wexample-wex-addon-app: >=
|
|
214
|
+
- wexample-wex-addon-ai: >=14.1.0
|
|
215
|
+
- wexample-wex-addon-app: >=31.0.0
|
|
216
216
|
|
|
217
217
|
## Versioning & Compatibility Policy
|
|
218
218
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# wex_addon_dev_flutter
|
|
2
2
|
|
|
3
|
-
Version: 6.9.
|
|
3
|
+
Version: 6.9.2
|
|
4
4
|
|
|
5
5
|
A wex addon for developers who maintain Flutter and Dart packages: it registers three workdir types — `flutter`, `flutter-package`, and `flutter-packages-suite` — that enforce the expected directory layout (`pubspec.yaml`, `lib/`, `test/`, `.publignore`), auto-format every `.dart` file via `dart format`, and drive `flutter pub publish` for releases. The `flutter-package` workdir also keeps `pubspec.yaml` consistent, writing the package name, version, and GitHub URLs resolved from the repository remote.
|
|
6
6
|
|
|
@@ -190,8 +190,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
190
190
|
- attrs: >=23.1.0
|
|
191
191
|
- cattrs: >=23.1.0
|
|
192
192
|
- wexample-filestate-flutter: >=6.6.0
|
|
193
|
-
- wexample-wex-addon-ai: >=
|
|
194
|
-
- wexample-wex-addon-app: >=
|
|
193
|
+
- wexample-wex-addon-ai: >=14.1.0
|
|
194
|
+
- wexample-wex-addon-app: >=31.0.0
|
|
195
195
|
|
|
196
196
|
## Versioning & Compatibility Policy
|
|
197
197
|
|
{wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/pyproject.toml
RENAMED
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-wex-addon-dev-flutter"
|
|
9
|
-
version = "6.9.
|
|
9
|
+
version = "6.9.2"
|
|
10
10
|
description = "Extends wex with Flutter workdir types that enforce project file structure, auto-format Dart sources, and publish packages via flutter pub publish"
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -21,8 +21,8 @@ dependencies = [
|
|
|
21
21
|
"attrs>=23.1.0",
|
|
22
22
|
"cattrs>=23.1.0",
|
|
23
23
|
"wexample-filestate-flutter>=6.6.0",
|
|
24
|
-
"wexample-wex-addon-ai>=
|
|
25
|
-
"wexample-wex-addon-app>=
|
|
24
|
+
"wexample-wex-addon-ai>=14.1.0",
|
|
25
|
+
"wexample-wex-addon-app>=31.0.0",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
28
|
[project.readme]
|
|
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
|
|
File without changes
|
|
File without changes
|
{wexample_wex_addon_dev_flutter-6.9.0 → wexample_wex_addon_dev_flutter-6.9.2}/tests/.gitkeep
RENAMED
|
File without changes
|