View on GitHub

MIOBuildTool

MIOJS Command line interface tool

Development

Getting started

Install the dependencies of the project, and start development.

npm install
npm start

Make it available in terminal

You can link your repository as if it was installed globally, with npm-link

npm link
# test it with:
miojs new -h

How to debug

Set the environmental arguments in .vscode/launch.json and start the launch config.

Write unit tests

tutorial

Publish to npm

To publish your first version to npm run:

npm run prod
# update changelog
npm version major|minor|patch
npm publish
npm install miojs -g