pubspec2 4.0.0 pubspec2: ^4.0.0 copied to clipboard
A library for manipulating pubspec.yaml files. This is a place holder until the pubspec library is updated with PR
pubspec #
A library for manipulating pubspec files.
Usage #
A simple usage example:
import 'package:pubspec2/pubspec.dart';
main() async {
// load it
var pubSpec = await PubSpec.load(myDirectory);
// change the dependencies to a single path dependency on project 'foo'
var newPubSpec = pubSpec.copy(dependencies: { 'foo': PathReference('../foo') });
// save it
await newPubSpec.save(myDirectory);
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.