- 授权协议: 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...")
}
500 Lines or Less
Amy Brown、Michael DiBernardo / 2016-6-28 / USD 35.00
This book provides you with the chance to study how 26 experienced programmers think when they are building something new. The programs you will read about in this book were all written from scratch t......一起来看看 《500 Lines or Less》 这本书的介绍吧!
