Clone this repo:
  1. 203de20 blast_repo fixes (#135) by Devon Carew · 8 days ago master
  2. f41f92c Bump actions/checkout from 3.5.0 to 3.5.2 (#134) by dependabot[bot] · 3 weeks ago
  3. 7e09db1 Bump dart-lang/setup-dart from 1.4.0 to 1.5.0 (#132) by dependabot[bot] · 8 weeks ago
  4. 6dc4072 Bump actions/checkout from 3.3.0 to 3.5.0 (#133) by dependabot[bot] · 8 weeks ago
  5. 74ac1cb Bump dart-lang/setup-dart from 1.3 to 1.4 (#130) by dependabot[bot] · 4 months ago

Build Status pub package package publisher

Support for working with Package Configuration files as described in the Package Configuration v2 design document.

A Dart package configuration file is used to resolve Dart package names (e.g. foobar) to Dart files containing the source code for that package (e.g. file:///Users/myuser/.pub-cache/hosted/pub.dartlang.org/foobar-1.1.0). The standard package configuration file is .dart_tool/package_config.json, and is written by the Dart tool when the command dart pub get is run.

The primary libraries of this package are

  • package_config.dart: Defines the PackageConfig class and other types needed to use package configurations, and provides functions to find, read and write package configuration files.

  • package_config_types.dart: Just the PackageConfig class and other types needed to use package configurations. This library does not depend on dart:io.

The package includes deprecated backwards compatible functionality to work with the .packages file. This functionality will not be maintained, and will be removed in a future version of this package.