Skip to content

Commit

Permalink
stylish changes for the sade calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vanyauhalin committed Nov 22, 2024
1 parent 036e531 commit 671c3d8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions makefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,30 @@ import * as test from "./test.js"
function main() {
sade("makefile.js")
.command("build")
.describe("Build themes.")
.action(build)

.command("grep")
.describe("List TextMate scopes for all syntaxes or a specific one.")
.example("grep")
.example("grep html")
.example("grep css js")
.action((p) => grammar.grep(p._))

.command("pull")
.describe("Download TextMate grammars for all syntaxes or a specific one.")
.example("pull")
.example("pull html")
.example("pull css js")
.action((p) => grammar.pull(p._))

.command("test")
.describe("Run tests for all syntaxes or a specific one.")
.example("test")
.example("test html")
.example("test css js")
.action((p) => test.run(p._))

.parse(process.argv)
}

Expand Down

0 comments on commit 671c3d8

Please sign in to comment.