all repos — min @ fb37f18db38b52017ee7544936193795f35dcc3b

A small but practical concatenative programming language.

Updated docs.
h3rald h3rald@h3rald.com
Mon, 29 Jan 2024 13:49:49 +0100
commit

fb37f18db38b52017ee7544936193795f35dcc3b

parent

c0dd49ae3987b74393913c22f60d8412a8446b20

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

jump to
M site/contents/learn-mmm.mdsite/contents/learn-mmm.md

@@ -42,7 +42,7 @@ ### min init

Initializes a new managed min module in tbe current directory by creating a sample `mmm.json` file in the current folder. -### min install [name version] [-g] +### min install [name version | name@version] [-g] Install the specified managed module by specifying its name and version. By default, the module is installed in the `mmm/<name>/<version>` folder; if `-g` is specified, it is installed in `$HOME/mmm/<name>/<version>`.

@@ -50,7 +50,7 @@ If no name and no version are specified, all the managed modules (and their dependencies) specified as dependencies for the current managed module will be installed.

If the installation of one dependency fails, the installation of the module will be rolled back. -### min uninstall [name version] [-g] +### min uninstall [name version | name@version] [-g] Uninstall the module specified by name and version either locally or globally (if `-g` is specified).

@@ -58,7 +58,7 @@ If no version is specified, all version of the module will be uninstalled (if the module is installed globally).

If no name and no version are specified, all dependencies of the current managed module (and their dependencies) will be uninstalled. -### min update [name version] [-g] +### min update [name version | name@version] [-g] Update the module specified by name and version either locally or globally (if `-g` is specified).