have package:lints use package:lints/recommended (#2098)
diff --git a/.github/labeler.yml b/.github/labeler.yml index dbaf8e5..d3938dc 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml
@@ -96,9 +96,9 @@ - changed-files: - any-glob-to-any-file: 'pkgs/pool/**' -'package:procoess': +'package:process': - changed-files: - - any-glob-to-any-file: 'pkgs/procoess/**' + - any-glob-to-any-file: 'pkgs/process/**' 'package:pub_semver': - changed-files:
diff --git a/README.md b/README.md index 057f245..90c4818 100644 --- a/README.md +++ b/README.md
@@ -37,6 +37,7 @@ | [oauth2](pkgs/oauth2/) | A client library for authenticating with a remote service via OAuth2 on behalf of a user, and making authorized HTTP requests with the user's OAuth2 credentials. | [][oauth2_issues] | [](https://pub.dev/packages/oauth2) | | [package_config](pkgs/package_config/) | Support for reading and writing Dart Package Configuration files. | [][package_config_issues] | [](https://pub.dev/packages/package_config) | | [pool](pkgs/pool/) | Manage a finite pool of resources. Useful for controlling concurrent file system or network requests. | [][pool_issues] | [](https://pub.dev/packages/pool) | +| [process](pkgs/process/) | A pluggable, mockable process invocation abstraction for Dart. | [][process_issues] | [](https://pub.dev/packages/process) | | [pub_semver](pkgs/pub_semver/) | Versions and version constraints implementing pub's versioning policy. This is very similar to vanilla semver, with a few corner cases. | [][pub_semver_issues] | [](https://pub.dev/packages/pub_semver) | | [pubspec_parse](pkgs/pubspec_parse/) | Simple package for parsing pubspec.yaml files with a type-safe API and rich error reporting. | [][pubspec_parse_issues] | [](https://pub.dev/packages/pubspec_parse) | | [source_map_stack_trace](pkgs/source_map_stack_trace/) | A package for applying source maps to stack traces. | [][source_map_stack_trace_issues] | [](https://pub.dev/packages/source_map_stack_trace) | @@ -78,6 +79,7 @@ [oauth2_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aoauth2 [package_config_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apackage_config [pool_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apool +[process_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aprocess [pub_semver_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apub_semver [pubspec_parse_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Apubspec_parse [source_map_stack_trace_issues]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_map_stack_trace
diff --git a/pkgs/process/CHANGELOG.md b/pkgs/process/CHANGELOG.md index 3791f21..bfa1e96 100644 --- a/pkgs/process/CHANGELOG.md +++ b/pkgs/process/CHANGELOG.md
@@ -2,6 +2,7 @@ * Updates minimum supported SDK version to Flutter 3.22/Dart 3.4. * Move the package into the `dart-lang/tools` repository. +* Bumped min SDK dependency to 3.5.0. ## 5.0.3
diff --git a/pkgs/process/analysis_options.yaml b/pkgs/process/analysis_options.yaml new file mode 100644 index 0000000..572dd23 --- /dev/null +++ b/pkgs/process/analysis_options.yaml
@@ -0,0 +1 @@ +include: package:lints/recommended.yaml
diff --git a/pkgs/process/pubspec.yaml b/pkgs/process/pubspec.yaml index 38ad51c..2a4194c 100644 --- a/pkgs/process/pubspec.yaml +++ b/pkgs/process/pubspec.yaml
@@ -8,7 +8,7 @@ - process environment: - sdk: ^3.4.0 + sdk: ^3.5.0 dependencies: file: '>=6.0.0 <8.0.0' @@ -16,4 +16,5 @@ platform: '^3.0.0' dev_dependencies: + lints: ^5.0.0 test: ^1.16.8