1.0.1 • Published 3 years ago

gulp-static-bindings v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

gulp-static-bindings

Replaces one-way dynamic bindings with string literals to static string literals

gulp-static-bindings

NPM version

Install

$ npm install -S gulp-static-bindings

Purpose?

How to use

gulp.task('string-static-literals', function() {
  // Stuff here
  return gulp.src('./src/**/*.html',{ base: "." })
    .pipe(removeDynamicBindings())
    .pipe(gulp.dest('.'));
});