From 2767dc097718ea0f13fda92250f538ebbb16b3de Mon Sep 17 00:00:00 2001 From: cookchristopher Date: Tue, 8 Aug 2017 16:12:28 +0100 Subject: [PATCH] Fix builds silently failing --- CHANGELOG.md | 1 + gulpfile.js/tasks/comp-lib.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5a87a25f..3b038deb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added - Generate component library files from components in new file structure without kss-node [#791](https://github.com/hmrc/assets-frontend/pull/791) +- Fixes builds silently failing [#798](https://github.com/hmrc/assets-frontend/pull/798) ### Changed - Updated the README.md as node version has been bumped up diff --git a/gulpfile.js/tasks/comp-lib.js b/gulpfile.js/tasks/comp-lib.js index cab7e462f..5a1b11ebc 100644 --- a/gulpfile.js/tasks/comp-lib.js +++ b/gulpfile.js/tasks/comp-lib.js @@ -42,4 +42,6 @@ gulp.task('component-library', ['kss-node'], function (cb) { library: path.join(compLibConfig.destination) })) .pipe(gulp.dest(compLibConfig.destination)) + + cb() })