From 15994b688bcc98e8121ddd0e6f87a10fbd3c980d Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Fri, 19 Apr 2013 02:40:27 -0400 Subject: [PATCH] Include changelog and license files in packages A README would be good too, but right now README.md consists mostly of things that are only meaningful in a Git checkout. --- Gruntfile.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 8db4a1e9..9e6789bd 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -166,6 +166,9 @@ module.exports = function(grunt) { + filename; grunt.file.copy(abspath, dest); }); + grunt.file.copy("changelog.txt", packageDir + "changelog.txt"); + grunt.file.copy("licenses/mit.txt", packageDir + "licenses/mit.txt"); + grunt.file.copy("licenses/new-bsd.txt", packageDir + "licenses/new-bsd.txt"); }); // ----------