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