1.1.1 • Published 5 years ago
@turtlefumes/dotenvit v1.1.1
dotenvit
It's supposed to create a dotenv file and require it in the right files or something
RIGHT NOW IT DOES NOTHING REALLY
Installation and Usage
With npm
Install with npm
$ npm i @turtlefumes/dotenvitRequire dotenvit in a js file for module usage
const dotenvit = require("@turtlefumes/dotenvit");Usage
Full Usage Example
// require dotenvit
const dotenvit = require("@turtlefumes/dotenvit");
// call insanity
dotenvit.insanity();The one method: insanity()
Console logs and returns true
dotenvit.insanity();Notes to Self
NPM
Bump npm version
With commit message. %s represents the version number
$ npm version patch -m "Upgrade to %s for reasons"To bump npm version point use: major, minor, or patch
$ npm version patchPublish
With Travis: bump version, commit, and push with:
$ git push --follow-tags originTo manually publish to NPM
$ npm publish --access publicMISC
Push without travis
$ git commit -m "[skip travis] Update READMEMES"Thank You
I was able to set this up with travis thanks to this tutorial by Bruno Krebs