- nvm to manage node versions.
brew install nvm
- yarn as node package manager
brew install yarn
- build it, this ensures the text templates are copied to the dist folder
yarn build
- link it locally
yarn link
- build it in watch mode
yarn build --watch
- test your local changes on your other packages
cd my-other-package
yarn link @labset-eslint/eslint-plugin
- build it
yarn build
- format it
yarn format
- lint it
yarn lint
yarn lint --fix
- test it
yarn test