Stylelint shareable config used by MASSIVE ART.
To make use of this config, install this package as development dependency of your project:
npm install eslint-config-ma --save-dev
Create a .eslintrc
config file:
{
"extends": "eslint-config-ma"
}
Update package.json version on main branch:
git checkout main
git pull origin main
npm version [ major | minor | patch ] --no-git-tag-version
git add .
git commit -m "Release <version>"
git push origin main
Generate changelog:
github_changelog_generator --future-release <version>
Copy the text of the last release into and get new release.
git fetch --tags
git checkout <version>
rm CHANGELOG.md # else it will be published with it
npm pack --dry-run # check that no unnecessary files are packed
npm publish