命令行构建工具 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://codercto.com/soft/d/19080.html

Clean Architecture

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

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

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

URL 编码/解码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具