- 授权协议: BSD
- 开发语言: Dart
- 操作系统: 跨平台
- 软件首页: https://github.com/google/grinder.dart
软件介绍
grinder.dart 是一个驱动命令行构建的库和工具。构建文件完全由 Dart 代码构建,这样你就可以用和你工程源码同样的工具来写和调试构建文件。
示例代码:
import 'package:grinder/grinder.dart';
main(args) => grind(args);@Task('Initialize stuff.')
init() {
log("Initializing stuff...");
}@Task('Compile stuff.')@Depends(init)
compile() {
log("Compiling stuff...");
}@DefaultTask('Deploy stuff.')@Depends(compile)
deploy() {
log("Deploying stuff...")
}
Clean Architecture
Robert C. Martin / Prentice Hall / 2017-9-20 / USD 34.99
Practical Software Architecture Solutions from the Legendary Robert C. Martin (“Uncle Bob”) By applying universal rules of software architecture, you can dramatically improve developer producti......一起来看看 《Clean Architecture》 这本书的介绍吧!
