0.0.3 • Published 9 years ago

gulp-parameters-generator v0.0.3

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
9 years ago

gulp-parameters-generator

Allows to generate parameters from the given parameters template based on users given values in CLI.

Usage

var parametersGenerator = require('gulp-parameters-generator');

gulp.task('generate-parameters', function() {
    return gulp.src('./parameters.json.dist')
        .pipe(parametersGenerator('./parameters.json'))
        .pipe(gulp.dest('./'));
});

Todos

  • cover with tests
  • more documentation and samples