tool to add a stability message to README.
Stability expresses the sort of changes you expect to make to your module.
Stable: Expect patches, possible features additions.
npm install -g stability
cd your-module
# output what the README would look like with a stability message.
stability stable --dry
# update the README & package.json
stability stable --package --readme
# make a git commit.
stability stable --commit
# update README, package.json and git commit
stability stable --all
# or...
stability stable -a
stability STABILITY_LEVEL [options]
options:
-r, --readme # add stability message to readme.
-p, --package # add stability message to package.
-c, --commit # commit stability messages
-a, --all # all of the above.
-d, --dry # preview the above changes on stdout only.
# do not make changes!
-h, --help # display this message
Defined here
Expect no more changes. Avoid using this module.
Expect the unexpected. Please provide feedback on api and your use-case.
Expect patches and features, possible api changes.
Expect patches, possible features additions.
Expect only patches. Please do not make feature requests.
Expect no changes, except serious bugs. Please do not make feature requests.
MIT