mcpm
v0.4.0
Published
Minecraft Package Manager
Downloads
3
Maintainers
Readme
mcpm
Installation
npm install -g mcpm
Usage
Usage: mcpm [options] [command]
Commands:
install|i <packages...> install one or more packages
minecraft-version|mc display currently selected Minecraft version
Options:
-h, --help output usage information
-V, --version output the version number
-v, --verbose increase verbosity
Examples:
Install a package from the ./foo directory
$ mcpm install ./foo
Install a package from the ./foo.zip archive
$ mcpm install ./foo.zip
Install a package from cache
$ mcpm install [email protected]
Show the Minecraft version of the currently selected profile
$ mcpm mc
Contributing
Prerequisites
- Install Node.js
- Fork and checkout this repo
- Run
npm install
in this directory
Workflow
- Run
npm start
to start tests and re-run them on changes - Write tests first
- Write code
- Run
npm check-style
to make sure you follow our style guide - Make a Pull Request when ready