diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ffdec..34f3e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## Unreleased + +### Added +- also do find and replace on define for FastBoot files + ## 0.2.1 ### Fixed diff --git a/index.js b/index.js index 2496b75..adef3bb 100644 --- a/index.js +++ b/index.js @@ -71,6 +71,8 @@ module.exports = { files: [ new RegExp(path.parse(outputPaths.app.js).name + '(.*js)'), new RegExp(path.parse(outputPaths.vendor.js).name + '(.*js)'), + // TODO: better RegExp for fastboot-fetch + new RegExp('fastboot-fetch' + '(.*js)'), new RegExp(path.parse(outputPaths.tests.js).name + '(.*js)'), new RegExp(path.parse(outputPaths.testSupport.js.testSupport).name + '(.*js)') ],