@nyce/eslint-config
v1.1.0
Published
Common configuration files used across projects.
Readme
1. Install packages
This template uses PNPM instead of NPM. Compatibility with regular NPM is not guaranteed and may require some tweaking.
pnpm install2. Set first version (0.0.0 -> 1.0.0)
git commit -m "Initial commit"
pnpm version major3. Publish the first version of your package
pnpm publishTesting changes locally
Run the pack command:
pnpm packThis generates an tarball file (.tgz), installable in any (p)npm project
pnpm add ./nyce-software-ts-core-[VERSION].tgzPublishing future versions
Important notice: A version number change and a push of commits is automatically triggered by the mentioned (p)npm commands. Please do not perform these actions manually.
Commit
Commit your changes, NOTE: do not mention/commit version numbers manually
git commit -m "DESCRIBE_YOUR_CHANGES_HERE"Version
Run the version command, specify the type of the change (semantic versioning):
pnpm version [patch|minor|major]Publish
Run the publish command:
pnpm publish