dart-resolve-package-conflicts
此技能提供一套解决 Dart/Flutter 项目中包版本冲突的标准化工作流程。当 `pub get` 因依赖不兼容而失败时,它指导开发者如何审计、升级依赖,并安全地手动修复 `pubspec.lock` 文件,确保项目构建稳定。
git clone https://github.com/dart-lang/skills.gitBefore / After 效果对比
1 组开发者在 Dart/Flutter 项目中遇到包版本冲突时,常因缺乏系统性方法而陷入漫长的试错和调试,可能需要数小时甚至更长时间才能找到解决方案,严重影响开发效率。
遵循此标准化工作流程,开发者能够快速定位并解决 Dart 包版本冲突,通过审计、升级和精确修改 `pubspec.lock`,将解决时间从数小时缩短至数十分钟,显著提升开发效率和项目稳定性。
Managing Dart Dependencies
Contents
- Core Concepts
- Version Constraints
- Workflow: Auditing Dependencies
- Workflow: Upgrading Dependencies
- Workflow: Resolving Version Conflicts
- Examples
Core Concepts
Dart enforces a strict single-version rule for dependencies: a project and all its transitive dependencies must resolve to a single, shared version of any given package. This prevents runtime type mismatches but introduces the risk of "version lock."
To mitigate version lock, Dart relies on version constraints rather than pinned versions in the pubspec.yaml. The pubspec.lock file maintains the exact resolved versions for reproducible builds.
Understand the output columns of dart pub outdated:
- Current: The version currently recorded in
pubspec.lock. - Upgradable: The latest version allowed by the constraints in
pubspec.yaml.dart pub upgraderesolves to this. - Resolvable: The absolute latest version that can be resolved when factoring in all other dependencies in the project.
- Latest: The latest published version of the package (excluding prereleases).
Version Constraints
- Use Caret Syntax: Always use caret syntax (e.g.,
^1.2.3) for dependencies inpubspec.yaml. This allowspubto select newer, non-breaking versions (up to, but not including, the next major version) during resolution. - Tighten Dev Dependencies: Set the lower bound of
dev_dependenciesto the exact version currently used. This reduces resolution complexity and prevents older, incompatible dev tools from being selected. - Enforce Lockfiles in CI: Use
dart pub get --enforce-lockfilein CI/CD pipelines to ensure the exact versions tested locally are used in production.
Workflow: Auditing Dependencies
Run this workflow periodically to identify stale packages that may impact stability or performance.
Task Progress:
- Run
dart pub outdated. - Review the Upgradable column to identify packages that can be updated without modifying
pubspec.yaml. - Review the Resolvable column to identify packages that require constraint modifications in
pubspec.yamlto update. - Identify any packages marked as retracted or discontinued.
Workflow: Upgrading Dependencies
Use conditional logic based on the audit results to upgrade dependencies.
Task Progress:
- If updating to "Upgradable" versions:
- Run
dart pub upgrade. - Run
dart pub upgrade --tightento automatically update the lower bounds inpubspec.yamlto match the newly resolved versions.
- Run
- If updating to "Resolvable" versions (Major updates):
- Manually edit
pubspec.yamlto bump the version constraint to match the "Resolvable" column (e.g., change^0.11.0to^0.12.1). - Run
dart pub upgradeto resolve the new constraints and updatepubspec.lock.
- Manually edit
- Feedback Loop:
- Run
dart analyze-> review errors -> fix breaking API changes. - Run
dart test-> review failures -> fix regressions.
- Run
Workflow: Resolving Version Conflicts
When pub cannot find a set of concrete versions that satisfy all constraints, or when dealing with a retracted package version, manipulate the lockfile surgically.
NEVER delete the entire pubspec.lock file and run dart pub get. This causes uncontrolled upgrades across the entire dependency graph.
Task Progress:
- Open
pubspec.lock. - Locate the specific YAML block for the conflicting or retracted package.
- Delete ONLY that package's entry from the lockfile.
- Run
dart pub getto fetch the newest compatible, non-retracted version for that specific package. - Feedback Loop:
- Run
dart pub deps-> verify the dependency graph resolves correctly. - If resolution fails, identify the transitive dependency causing the lock, update its constraint in
pubspec.yaml, and retry.
- Run
Examples
Tightening Constraints
When dart pub outdated shows a package is resolvable to a higher minor/patch version, use the --tighten flag to update the pubspec.yaml automatically.
Input (pubspec.yaml):
dependencies:
http: ^0.13.0
Command:
dart pub upgrade --tighten http
Output (pubspec.yaml):
dependencies:
http: ^0.13.5
Surgical Lockfile Removal
If package_a is retracted or locked in a conflict, remove only its block from pubspec.lock.
Before (pubspec.lock):
packages:
package_a:
dependency: "direct main"
description:
name: package_a
url: "https://pub.dev"
source: hosted
version: "1.0.0" # Retracted version
package_b:
dependency: "direct main"
# ...
Action: Delete the package_a block entirely. Leave package_b untouched. Run dart pub get.
用户评价 (0)
发表评价
暂无评价
统计数据
用户评分
为此 Skill 评分