broccoli-inject-livereload
v1.6.0
Published
Broccoli plugin for injecting livereload script into HTML
Downloads
175
Readme
broccoli-inject-livereload
This plugin injects a reference to the livereload script into your HTML files. Please note that the plugin will only modify files with .html
extension that match the target property and simply copy everything else.
Installation
npm install broccoli-inject-livereload --save-dev
Example using a single html target
const BroccoliInjectLivereload = require('broccoli-inject-livereload')
const reloadable = new BroccoliInjectLivereload('app', {
target: 'index.html'
})
module.exports = reloadable
Example using a regular expression to target multiple html files
const BroccoliInjectLivereload = require('broccoli-inject-livereload')
const reloadable = new BroccoliInjectLivereload('app', {
target: /^[a-zA-Z._-]+.html$/
})
module.exports = reloadable
Example using a costum port
const BroccoliInjectLivereload = require('broccoli-inject-livereload')
const reloadable = new BroccoliInjectLivereload('app', {
target: 'index.html',
livereload: {
port: 12345
}
})
module.exports = reloadable
License
This project is distributed under the MIT license.