命令行构建工具 grinder.dart

码农软件 · 软件分类 · 项目构建 · 2019-11-15 22:57:25

软件介绍

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...")
}

本文地址:https://www.codercto.com/soft/d/19080.html

500 Lines or Less

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》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器