mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-05 21:13:22 +02:00
raco: add page (#6955)
This commit is contained in:
parent
d89c97f0e1
commit
aaed3c64af
1 changed files with 28 additions and 0 deletions
28
pages/common/raco.md
Normal file
28
pages/common/raco.md
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# raco
|
||||||
|
|
||||||
|
> Racket command-line tools.
|
||||||
|
> More information: <https://docs.racket-lang.org/raco/>.
|
||||||
|
|
||||||
|
- Install a package, automatically installing dependencies:
|
||||||
|
|
||||||
|
`raco pkg install --auto {{package_source}}`
|
||||||
|
|
||||||
|
- Install the current directory as a package:
|
||||||
|
|
||||||
|
`raco pkg install`
|
||||||
|
|
||||||
|
- Build (or rebuild) bytecode, documentation, executables, and metadata indexes for collections:
|
||||||
|
|
||||||
|
`raco setup {{collection1 collection2 ...}}`
|
||||||
|
|
||||||
|
- Run tests in files:
|
||||||
|
|
||||||
|
`raco test {{path/to/tests1.rkt path/to/tests2.rkt ...}}`
|
||||||
|
|
||||||
|
- Search local documentation:
|
||||||
|
|
||||||
|
`raco docs {{search_terms ...}}`
|
||||||
|
|
||||||
|
- Display help:
|
||||||
|
|
||||||
|
`raco help`
|
Loading…
Add table
Reference in a new issue