build-version
Get a version for your build.
Why?
- Versioning your builds improves integrity.
- Ensures your build numbers are useful and meaningful.
- Intelligent behavior in or out of a repository.
Install
npm install build-version --save
Usage
Get it into your program.
const buildVersion = require('build-version');
Get a version to use when writing the build.
buildVersion().then((version) => {
console.log(version);
});
Contributing
See our contributing guidelines for more details.
- Fork it.
- Make a feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.
License
MPL-2.0 © Seth Holladay
Go make something, dang it.