gulp-inject-envs

Gulp plugin to inject environment variables
Table of Contents
Install
Install the package locally within you project folder with your package manager:
With npm:
npm install gulp-inject-envs
With yarn:
yarn add gulp-inject-envs
With pnpm:
pnpm add gulp-inject-envs
Usage
const injectEnvs = require('gulp-inject-envs')
const env = { foo: 'bar', ping: 'pong' }
gulp.src('**/*.js')
.pipe(injectEnvs(env))
.pipe(gulp.dest('/'))
And in code:
const foo = '<ENV::foo>'
console.log(foo)
Contributing
Got an idea for a new feature? Found a bug? Contributions are welcome! Please open up an issue or make a pull request.
License
MIT © Tiaan du Plessis