From: Matt Steele Date: Mon, 20 Apr 2015 18:35:14 +0000 (-0500) Subject: Include package.json in dist/assets X-Git-Tag: v5.5.2~11^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6485%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Include package.json in dist/assets Allows Bower package to be installed using npm --- diff --git a/grunt/config/copy.js b/grunt/config/copy.js index bef2451c6..48631cb9b 100644 --- a/grunt/config/copy.js +++ b/grunt/config/copy.js @@ -23,8 +23,8 @@ module.exports = { dest: '<%= paths.dist %>assets/scss/', filter: 'isFile' },{ - src: 'bower.json', + src: ['bower.json', 'package.json'], dest: '<%= paths.dist %>assets/' }] } -}; \ No newline at end of file +};