1.6.0 • Published 5 years ago
broccoli-inject-livereload v1.6.0
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 = reloadableExample 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 = reloadableExample using a costum port
const BroccoliInjectLivereload = require('broccoli-inject-livereload')
const reloadable = new BroccoliInjectLivereload('app', {
target: 'index.html',
livereload: {
port: 12345
}
})
module.exports = reloadableLicense
This project is distributed under the MIT license.