blob: d61d0021c4f88abbe21dc2ef243c21ea6c087d13 (
plain) (
blame)
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
|
# Package Manager
## Usage
forge add <repo>
creates a config for the package based on the repo name.
#TODO: handle namespace conflict
config options:
update = <no, live, tagged>
build = "build command"
install = "install command"
uninstall = "uninstall command"
clean = "clean command"
deps = ["named list of deps"]
forge update
pulls latest for all tracked packages per update rules
forge upgrade [pkgnames]
If no names are provided assume all otherwise do build and install on named packages
forge remove [pkgnames]
Removes named packages and orphaned deps
forge list
lists all packages currently tracked
forge search [term]
lists packages with the given substring not case sensitive
forge clean [pkgnames]
runs the clean command on every tracked package or named
forge show [pkgname]
shows the configured info about the package
|