mops add
Install a specific package and save it to mops.toml
mops add <package_name>
Examples
Install latest base package from mops registry
mops add base
Install specific version of base package from mops registry
mops add base@0.10.0
Add package from GitHub
mops add https://github.com/dfinity/motoko-base
For GitHub-packages you can specify branch, tag, or commit hash by adding #<branch/tag/hash>
mops add https://github.com/dfinity/motoko-base#moc-0.9.1
Add local package
mops add ./shared
Options
--dev
Add package to [dev-dependencies] section.
--lock
What to do with the lockfile
Default value is update if lockfile exists and ignore otherwise.
Possible values:
update- update lockfile (create if not exists). Always checks after updateignore- ignore lockfile
--verbose
Verbose output.