Gulp plugin to inject environment variables
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
const injectEnvs = require('gulp-inject-envs')
const env = { foo: 'bar', ping: 'pong' }
gulp.src('**/*.js')
.pipe(injectEnvs(env)) // set custom prefix with second argument e.g. {prefix: 'CUSTOM___' }
.pipe(gulp.dest('/'))
And in code:
const foo = '<ENV::foo>'
console.log(foo) // bar
Got an idea for a new feature? Found a bug? Contributions are welcome! Please open up an issue or make a pull request.