Clone this repo:
  1. 962014d fix ignore placement by Kevin Moore · 4 years, 3 months ago master
  2. 7f1a0f3 fix new pedantic lints by Kevin Moore · 4 years, 3 months ago
  3. ffa2305 Enable pedantic lints, test on oldest supported SDK (#27) by Kevin Moore · 5 years ago
  4. 9c21c2c Run dartfmt --fix (#25) by Nate Bosch · 5 years ago
  5. c61d7cf Prepare to republish as 1.0.10 by Nate Bosch · 5 years ago 1.0.10

A package that defines a common class, PackageResolver, for defining how to resolve package: URIs. This class may be based on the current isolate's package resolution strategy, but it may also be explicitly defined by the user—for example, you could create a resolver that represents the strategy used to compile a .dart.js file.

The Dart VM provides two mutually exclusive means of resolving package: URIs: a package spec and a package root.

  • A package spec usually comes in the form of a .packages file on the filesystem. It defines an individual root URL for each package name, so that package:$name/$path resolves to $root/$path.

  • A package root is a single URL that acts as the base for all package: URIs, so that package:$name/$path resolves to $base/$name/$path.

This normalizes access to these resolution schemes, and makes it easy for code to resolve package URIs no matter where the resolution information comes from.