# [1.6.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.5.0...v1.6.0) (2021-05-13)


### Features

* update outdated dependencies ([8f084ac](https://github.com/stfsy/broccoli-inject-livereload/commit/8f084ac7222711ba2a50631bc90a92da78005768))
* update vulnerable dependencies ([b930a17](https://github.com/stfsy/broccoli-inject-livereload/commit/b930a172aa2a061c6bee36d11d83baffa872e6df))
* update vulnerable dependencies ([003acec](https://github.com/stfsy/broccoli-inject-livereload/commit/003acecd1cebac8c4cb4e9f4a890ba01de6649c3))



<a name="1.5.0"></a>
# [1.5.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.4.2...v1.5.0) (2021-02-09)


### Features

* update outdated dependencies ([6b9eb50](https://github.com/stfsy/broccoli-inject-livereload/commit/6b9eb50))
* update vulnerable dependencies ([8df7cc3](https://github.com/stfsy/broccoli-inject-livereload/commit/8df7cc3))



<a name="1.4.2"></a>
## [1.4.2](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.4.0...v1.4.2) (2020-09-16)


### Bug Fixes

* cli shorthands cause crash ([66374ba](https://github.com/stfsy/broccoli-inject-livereload/commit/66374ba))




<a name="1.4.0"></a>
# [1.4.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.2.0...v1.4.0) (2020-04-12)


### Bug Fixes

* build fails if no head tag present ([ba91555](https://github.com/stfsy/broccoli-inject-livereload/commit/ba91555))


### Features

* update dependencies ([94b488b](https://github.com/stfsy/broccoli-inject-livereload/commit/94b488b))
* update node-html-light ([aaf3042](https://github.com/stfsy/broccoli-inject-livereload/commit/aaf3042))
* use broccoli plugin adapter ([e9ee9e1](https://github.com/stfsy/broccoli-inject-livereload/commit/e9ee9e1))



<a name="1.3.0"></a>
# [1.3.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.2.0...v1.3.0) (2020-03-22)


### Features

* update dependencies ([94b488b](https://github.com/stfsy/broccoli-inject-livereload/commit/94b488b))



<a name="1.2.0"></a>
# [1.2.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v1.1.0...v1.2.0) (2018-12-22)


### Features

* add broccoli 2 compatible plugin implementation ([2872ed3](https://github.com/stfsy/broccoli-inject-livereload/commit/2872ed3))
* update dependencies ([7ca42a6](https://github.com/stfsy/broccoli-inject-livereload/commit/7ca42a6))
* update dependencies ([0149d99](https://github.com/stfsy/broccoli-inject-livereload/commit/0149d99))


### BREAKING CHANGES

* - Port is still configurable, but now has to supplied using a nested livereload
 object
- Configure the target (html) files using the required target property and a
JavaScript Regular Expression

```js
const BroccoliInjectLivereload = require('broccoli-inject-livereload')

const reloadable = new BroccoliInjectLivereload('app', {
    target: 'index.html',
    livereload: {
        port: 12345
       }
    })

module.exports = reloadable
```



<a name="1.1.0"></a>
# [1.1.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v0.1.1...v1.1.0) (2018-12-22)


### Features

* add broccoli 1 compatible plugin implementation ([de3d336](https://github.com/stfsy/broccoli-inject-livereload/commit/de3d336))
* update dependencies ([1d0d691](https://github.com/stfsy/broccoli-inject-livereload/commit/1d0d691))
* update dependencies ([8c6efc0](https://github.com/stfsy/broccoli-inject-livereload/commit/8c6efc0))


### BREAKING CHANGES

* Port is still configurable, but now has to be supplied using a nested livereload object.
Configure the target (html) files using the required target property and a
JavaScript Regular Expression

```js
const BroccoliInjectLivereload = require('broccoli-inject-livereload')

const reloadable = new BroccoliInjectLivereload('app', {
    target: 'index.html',
    livereload: {
        port: 12345
       }
    })

module.exports = reloadable
```



<a name="1.0.0"></a>
# [1.0.0](https://github.com/stfsy/broccoli-inject-livereload/compare/v0.1.1...v1.0.0) (2017-09-26)


### Features

* add broccoli 1 compatible plugin implementation ([de3d336](https://github.com/stfsy/broccoli-inject-livereload/commit/de3d336))


### BREAKING CHANGES

* Port is still configurable, but now has to be supplied using a nested livereload object.
Configure the target (html) files using the required target property and a
JavaScript Regular Expression

```js
const BroccoliInjectLivereload = require('broccoli-inject-livereload')

const reloadable = new BroccoliInjectLivereload('app', {
    target: 'index.html',
    livereload: {
        port: 12345
       }
    })

module.exports = reloadable
```



