gulp-sync-env

1.0.6 • Public • Published

gulp-sync-env

NPM version Build Status Coverage Status Dependency Status

sync-env plugin for gulp

Usage

First, install gulp-sync-env as a development dependency:

npm install --save-dev gulp-sync-env

Then, add it to your gulpfile.js:

var syncEnv = require('gulp-sync-env');
var gulp = require('gulp');
 
gulp.task('syncEnv', function(){
    gulp.src('.env')
    .pipe(syncEnv('.env-example'))
    .pipe(gulp.dest(''));
});
 
gulp.task('watch', function(){
    gulp.watch('.env', ['syncEnv']);
});
 
gulp.task('default', ['watch']);

API

sync-env(options)

options.msg

Type: String
Default: .env-example

The name of the saved file.

License

MIT License

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.6
    0
    • latest

Version History

Package Sidebar

Install

npm i gulp-sync-env

Weekly Downloads

0

Version

1.0.6

License

MIT

Last publish

Collaborators

  • 303k