You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 459B

gulp-inject-js

Inject js file to html

Install

npm install gulp-inject-js --save-dev

Usage

const gulp = require('gulp');
const injectJS = require('gulp-inject-js');

gulp.task('inject-js', function() {
  gulp.src('src/*.html')
    .pipe(injectJS())
    .pipe(gulp.dest('dist'));
});

In the html file, specify the relative path to JS

<html>
  ...
  <!-- inject-js scripts/script.js -->
  ...
</html>