0 purchases
pubspec lock parse
Supports parsing pubspec.lock files with robust error reporting
Designed around the pubspec_parse package, and mirrors its implementation and interface
Usage #
import 'dart:io';
import 'package:pubspec_lock_parse/pubspec_lock_parse.dart';
void main() {
final lockStr = File('path/to/pubspec.lock').readAsStringSync();
final lockfile = PubspecLock.parse(lockStr);
}
copied to clipboard
You can find more about the PubspecLock object in the documentation here
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.