-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
100 lines (76 loc) · 1.99 KB
/
Justfile
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# View help text
@help *recipe:
./scripts/help.nu {{ recipe }}
# View file annotated with version control information
[no-cd]
@annotate *filename:
./scripts/annotate.nu {{ filename }}
# Check flake and run pre-commit hooks
@check *args:
./scripts/check.nu {{ args }}
alias deps := dependencies
# List dependencies (alias: `deps`)
@dependencies *args:
./scripts/dependencies.nu {{ args }}
# Manage environments
@environment *args:
./scripts/environment.nu {{ args }}
# Search available `just` recipes
[no-cd]
[no-exit-message]
@find-recipe *search_term:
./scripts/find-recipe.nu {{ search_term }}
# View project history
[no-cd]
@history *args:
./scripts/history.nu {{ args }}
# Initialize direnv environment
@init *help:
./scripts/init.nu {{ help }}
# View issues
@issue *args:
./scripts/issue.nu {{ args }}
# Create a new release
@release *preview:
./scripts/release.nu {{ preview }}
# View remote repository
@remote *web:
./scripts/remote.nu {{ web }}
# View repository analytics
@stats *help:
./scripts/stats.nu {{ help }}
# Run tests
@test *args:
./scripts/test.nu {{ args }}
# View the source code for a recipe
[no-cd]
@view-source *recipe:
./scripts/view-source.nu {{ recipe }}
mod lilypond "just/lilypond.just"
# Alias for `lilypond clean`
@clean *args:
just lilypond clean {{ args }}
# Alias for `lilypond compile`
@compile *args:
just lilypond compile {{ args }}
# Alias for `lilypond create`
@create *args:
just lilypond create {{ args }}
# Alias for `lilypond edit`
@edit *args:
just lilypond edit {{ args }}
# Alias for `lilypond info`
@info *args:
just lilypond info {{ args }}
# Alias for `lilypond open-pdf`
@open-pdf *args:
just lilypond open-pdf {{ args }}
# Alias for `lilypond settings`
@settings *args:
just lilypond settings {{ args }}
# Alias for `lilypond templates`
@templates *args:
just lilypond templates {{ args }}
# Alias for `lilypond update`
@update *args:
just lilypond update {{ args }}