-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.toml
More file actions
49 lines (36 loc) · 1.11 KB
/
help.toml
File metadata and controls
49 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"$schema" = "https://unpkg.com/makeman@*/help.schema.json"
name = "makeman"
author = "niceEli"
description = "An Opinionated GNU Make Help System"
[targets]
[targets.build]
description = "Build the app"
[targets.dev]
description = "Build and run the app"
[targets.dev.usage]
[[targets.dev.usage.variables]]
name = "NODE_ENV"
description = "Use 'development' for development mode, 'production' for production mode"
[targets.format]
description = "Format the code using prettier"
[targets.lint]
description = "Lint the code using ESLint"
[targets.test]
description = "Run the tests using vitest"
[targets.test.usage]
example = "test [commands] [options]"
[[targets.test.usage.commands]]
name = "dev"
description = "Run the tests in development mode"
[[targets.test.usage.options]]
name = "--watch"
description = "Run the tests in watch mode"
[targets.tsc]
description = "Type check the code using TypeScript"
[targets.tsc.usage]
example = "tsc [commands]"
[[targets.tsc.usage.commands]]
name = "noEmit"
description = "Type check the code without emitting files"
[targets.genSchema]
description = "Generate the schema for the app"