-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ for [Deno](https://deno.land/) inspired by | |
- File tasks and non-file tasks. | ||
- Drake API functions for defining, registering and running tasks. | ||
|
||
**Status**: Tested with Deno 1.0.4 running on Ubuntu 18.04, Windows 10. See | ||
**Status**: Tested with Deno 1.1.0 running on Ubuntu 20.04, Windows 10. See | ||
[releases](https://github.com/srackham/drake/blob/master/releases.md). | ||
|
||
|
||
|
@@ -25,7 +25,7 @@ A drakefile is a TypeScript module that: | |
Example drakefile: | ||
|
||
``` typescript | ||
import { desc, run, task } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { desc, run, task } from "https://deno.land/x/[email protected].3/mod.ts"; | ||
|
||
desc("Minimal Drake task"); | ||
task("hello", [], function() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { desc, run, task } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { desc, run, task } from "https://deno.land/x/[email protected].3/mod.ts"; | ||
|
||
desc("Minimal Drake task"); | ||
task("hello", [], function () { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters