1.0.2 • Published 9 months ago

@nyce/eslint-config v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

1. Install packages

This template uses PNPM instead of NPM. Compatibility with regular NPM is not guaranteed and may require some tweaking.

pnpm install

2. Set first version (0.0.0 -> 1.0.0)

git commit -m "Initial commit"
pnpm version major

3. Publish the first version of your package

pnpm publish

Testing changes locally

Run the pack command:

pnpm pack

This generates an tarball file (.tgz), installable in any (p)npm project

pnpm add ./nyce-software-ts-core-[VERSION].tgz

Publishing 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