-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
63ecec5
commit ef5c008
Showing
1 changed file
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<h1 align="center" > | ||
Dukefile | ||
</h1> | ||
</div> | ||
<div align="center" > | ||
a build tool that inspired from Magefile, for Deno | ||
</div> | ||
<br> | ||
<br> | ||
|
||
## Installation | ||
|
||
Dukefile can be installed by Deno install tool easily | ||
|
||
```cmd | ||
deno install --allow-read https://deno.land/x/dukefile/bin/duke.ts | ||
``` | ||
|
||
## Usage | ||
|
||
Firstly, create `dukefile.ts` on root of the application and for running a spesified task, run this: | ||
|
||
duke <task name> | ||
|
||
or only `duke` for running `default` task | ||
|
||
duke | ||
|
||
#### Example dukefile.ts | ||
|
||
```javascript | ||
|
||
export function hello(){ | ||
console.log("Hello Task"); | ||
} | ||
|
||
export default function(){ | ||
console.log("Default task"); | ||
} | ||
|
||
``` |