2.5.1 • Published 6 years ago

mdu-scripts v2.5.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

mdu-scripts 🛠📦

CLI toolbox for common scripts for my projects

npm Build Status license code style: prettier semantic-release

Motivation

There is a lot of repetition when setting up JavaScript codebases - configurations, test frameworks, etc. The goal of this is to abstract my common configurations behind a CLI.

Usage

npm install --save-dev mdu-scripts

One-off scripts can be run with npx if you don't want to install mdu-scripts to your project. For example, the following command adds prettier.config.js, .editorconfig, .gitignore, and lint-staged.config.js configuration files to your current working directory:

$ npx mdu-scripts add prettier editorconfig gitignore lint-staged

All possible scripts are located in src/scripts. More documentation to follow!

Inspiration

This is inspired by kcd-scripts.