命令行构建工具 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

The Definitive Guide to Django

The Definitive Guide to Django

Adrian Holovaty、Jacob Kaplan-Moss / Apress / 2007-12-06 / CAD 45.14

Django, the Python-based equivalent to the Ruby on Rails web development framework, is presently one of the hottest topics in web development today. In The Definitive Guide to Django: Web Development ......一起来看看 《The Definitive Guide to Django》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具