1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:46:00 +02:00

haxelib: add "install", "uninstall", and "list" examples (#7288)

This commit is contained in:
Andy Li 2021-10-29 15:30:16 +08:00 committed by GitHub
parent a014befa5a
commit 847dd74e9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,10 @@
`haxelib install {{libname}}`
- Install a specific version of a Haxe library:
`haxelib install {{libname}} {{version}}`
- Upgrade all installed Haxe libraries:
`haxelib upgrade`
@ -18,3 +22,11 @@
- Install the development version of a library from a Git repository:
`haxelib git {{libname}} {{git_url}}`
- Uninstall a Haxe library:
`haxelib remove {{libname}}`
- Print a tree of locally installed Haxe libraries:
`haxelib list`