https://github.com/therealklanni/mrm
mrm tasks
https://github.com/therealklanni/mrm
mrm mrm-preset mrm-task
Last synced: 12 months ago
JSON representation
mrm tasks
- Host: GitHub
- URL: https://github.com/therealklanni/mrm
- Owner: therealklanni
- License: mit
- Created: 2020-03-26T02:08:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-14T15:49:47.000Z (almost 6 years ago)
- Last Synced: 2025-06-15T03:19:27.329Z (about 1 year ago)
- Topics: mrm, mrm-preset, mrm-task
- Language: JavaScript
- Homepage:
- Size: 6.53 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mrm tasks
A set of [mrm tasks](https://github.com/sapegin/mrm).
## Tasks
- `commitlint`: installs and configures [commitlint](https://commitlint.js.org/) with
[@therealklanni/commitlint-config](https://github.com/therealklanni/commitlint-config)
- _eslint coming soon_
- _prettier coming soon_
## Usage
### Recommended
Because `mrm` normally expects the preset ("@therealklanni/mrm") to be globally installed, we want to work
around that, otherwise you would have to keep the globally installed preset updated.
The command is ugly, but this method ensures we always use the _latest_ preset version. Just copy
and paste it 🎉 and replace `` with the task name and go!
```
npx -p mrm -p @therealklanni/mrm -c 'mrm --preset @therealklanni/mrm '
```
### Manual
If you want to lock in a particular version of this preset, or you just want to type the npx command
manually, install it globally:
```
npm install --global @therealklanni/mrm
npx mrm --preset @therealklanni/mrm
```