all repos — nifty @ da878ca36ba0377eab2e9a28e15a472c4bfcbbe6

A tiny (pseudo) package manager and script runner.

Minor fixes.
h3rald h3rald@h3rald.com
Sun, 29 Apr 2018 15:30:35 +0200
commit

da878ca36ba0377eab2e9a28e15a472c4bfcbbe6

parent

587d550e7c480d35d2e3038c99a989fbfc9ebb46

1 files changed, 8 insertions(+), 8 deletions(-)

jump to
M README.mdREADME.md

@@ -37,13 +37,13 @@ *nifty* is a self-contained executable program written in {{nim -> [Nim](https://nim-lang.org)}} and runs on all platforms where Nim compiles. Also, unlike other package managers that are typically used within the context of one specific programming language (like [NPM](https://www.npmjs.com) for Javascript or [RubyGems](https://rubygems.org) for Ruby), *nifty* can be used in virtually any project, regardless of the programming language used.

## Usage -* `nifty help [lt;commandgt;]` &middot; Display help on the specified command (or all commands). -* `nifty info lt;packagegt;` &middot; Displays information on lt;packagegt; -* `nifty init [lt;storage-dirgt;]` &middot; Initializes a project in the current directory (using lt;storage-dirgt; as storage directory). +* `nifty help [<command>]` &middot; Display help on the specified command (or all commands). +* `nifty info <package>` &middot; Displays information on <package> +* `nifty init [<storage-dir>]` &middot; Initializes a project in the current directory (using <storage-dir> as storage directory). * `nifty list` &middot; Lists all dependencies (recursively) of the current project. -* `nifty map lt;packagegt;` &middot; Configures a new or existing package lt;packagegt;. -* `nifty remove [lt;packagegt;]` &middot; Removes the specified package (or all packages) from the storage directory. -* `nifty unmap lt;packagegt;` &middot; Unmaps the previously-mapped package lt;packagegt;. +* `nifty map <package>` &middot; Configures a new or existing package <package>. +* `nifty remove [<package>]` &middot; Removes the specified package (or all packages) from the storage directory. +* `nifty unmap <package>` &middot; Unmaps the previously-mapped package <package>. * `nifty update` &middot; Updates the command definitions for the current project and migrate nifty.json file (if necessary). -* `nifty install [lt;packagegt;]` &middot; Installs the specified package (or all mapped packages) to the storage directory. -* `nifty upgrade [lt;packagegt;]` &middot; Upgrades the specified previously-installed package (or all packages). +* `nifty install [<package>]` &middot; Installs the specified package (or all mapped packages) to the storage directory. +* `nifty upgrade [<package>]` &middot; Upgrades the specified previously-installed package (or all packages).