]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Include package.json in dist/assets 6485/head
authorMatt Steele <orphum@gmail.com>
Mon, 20 Apr 2015 18:35:14 +0000 (13:35 -0500)
committerMatt Steele <orphum@gmail.com>
Mon, 20 Apr 2015 18:35:14 +0000 (13:35 -0500)
Allows Bower package to be installed using npm

grunt/config/copy.js

index bef2451c67fc4025182edecc7cee409be7e90cf6..48631cb9bc64d50723772cb6a71eca006a99f549 100644 (file)
@@ -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
+};