mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 21:42:08 +02:00

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
24 lines
441 B
Markdown
24 lines
441 B
Markdown
# shards
|
|
|
|
> Dependency management tool for the Crystal language.
|
|
> More information: <https://crystal-lang.org/reference/the_shards_command>.
|
|
|
|
- Create a skeleton `shard.yml` file:
|
|
|
|
`shards init`
|
|
|
|
- Install dependencies from a `shard.yml` file:
|
|
|
|
`shards install`
|
|
|
|
- Update all dependencies:
|
|
|
|
`shards update`
|
|
|
|
- List all installed dependencies:
|
|
|
|
`shards list`
|
|
|
|
- List version of dependency:
|
|
|
|
`shards version {{path/to/dependency_directory}}`
|