v2.2.0
pubspec_lock_parse
一個簡單的套件,用於使用類型安全的 API 和豐富的錯誤報告來解析 pubspec.lock 檔案。
2喜歡 11.1萬近 30 天下載140Pub 分數
AndroidiOSWebmacOSWindowsLinux
用於解析 pubspec.lock 檔案的簡單套件,具備類型安全的 API 和豐富的錯誤報告。
^2.3.1^4.6.0^2.1.1^2.0.1^2.1.11^6.3.1^1.21.4^1.10.0^3.1.1以下為英文專案原文快照,最新內容請造訪 GitHub。
Supports parsing pubspec.lock files with robust error reporting
Designed around the pubspec_parse package, and mirrors its implementation and interface
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);
}
You can find more about the PubspecLock object in the documentation here
pubspec_lock_parse includes .toJson() methods on each object to allow for easy re-generation/mutation of pubspec files
This can be combined with yaml_writer to re-generate yaml output
void main() {
final pubspec = PubspecLock(
packages: {
'somePackage': Package(
dependency: 'transitive',
description: PathPackageDescription(
path: '../somePackage',
relative: true,
)
)
},
sdks: {
'dart': VersionConstraint.parse(">=2.17.0 <3.0.0"),
}
);
final jsonPubspec = pubspec.toJson(); // outputs Map<String, dynamic>
final yamlPubspec = YamlWriter().write(jsonPubspec); // outputs String
}
toJson can also be run on any individual object
// outputs: { path: '../somePackage', relative: true }
print(PathPackageDescription(
path: '../somePackage',
relative: true,
).toJson());