File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ A drakefile is a TypeScript module that:
3030### Example drakefile
3131
3232``` typescript
33- import { desc , run , task } from " https://deno.land/x/drake@v1.5.0 /mod.ts" ;
33+ import { desc , run , task } from " https://deno.land/x/drake@v1.5.1 /mod.ts" ;
3434
3535desc (" Minimal Drake task" );
3636task (" hello" , [], function () {
@@ -76,14 +76,14 @@ module can be imported from:
7676- [ deno.land] ( https://deno.land/x/drake ) (Deno's third party modules registry).
7777 For example:
7878
79- import { desc, run, task } from "https://deno.land/x/drake@v1.5.0 /mod.ts";
79+ import { desc, run, task } from "https://deno.land/x/drake@v1.5.1 /mod.ts";
8080
8181- [ nest.land] ( https://nest.land/package/drake ) (a blockchain based Deno modules
8282 registry).\
8383 ** NOTE** : Drake version numbers in ` nest.land ` URLs are not prefixed with a
8484 'v' character:
8585
86- import { desc, run, task } from "https://x.nest.land/drake@1.5.0 /mod.ts";
86+ import { desc, run, task } from "https://x.nest.land/drake@1.5.1 /mod.ts";
8787
8888Some Drake APIs are useful in non-drakefiles, use ` lib.ts ` (not ` mod.ts ` ) to
8989import them into non-drakefile modules.
Original file line number Diff line number Diff line change 11{
22 "name" : " drake" ,
33 "description" : " Drake is a Make-like task runner for Deno" ,
4- "version" : " 1.5.0 " ,
4+ "version" : " 1.5.1 " ,
55 "stable" : true ,
66 "files" : [
77 " mod.ts" ,
Original file line number Diff line number Diff line change 77 run ,
88 sh ,
99 task ,
10- } from "https://deno.land/x/drake@v1.5.0 /mod.ts" ;
10+ } from "https://deno.land/x/drake@v1.5.1 /mod.ts" ;
1111// } from "../mod.ts";
1212
1313desc ( "command-line usage" ) ;
Original file line number Diff line number Diff line change 1- import { desc , run , task } from "https://deno.land/x/drake@v1.5.0 /mod.ts" ;
2- // import { desc, run, task } from "https://x.nest.land/drake@1.5.0 /mod.ts";
1+ import { desc , run , task } from "https://deno.land/x/drake@v1.5.1 /mod.ts" ;
2+ // import { desc, run, task } from "https://x.nest.land/drake@1.5.1 /mod.ts";
33
44desc ( "Minimal Drake task" ) ;
55task ( "hello" , [ ] , function ( ) {
You can’t perform that action at this time.
0 commit comments