Gulp plugin to inject environment variables
Install the package locally within you project folder with your package manager:
With npm:
npm install gulp-inject-envsWith yarn:
yarn add gulp-inject-envsWith pnpm:
pnpm add gulp-inject-envsconst 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) // barGot an idea for a new feature? Found a bug? Contributions are welcome! Please open up an issue or make a pull request.