From ebc8210b1f78cb261c4109ef99f3596198780b83 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 19 Jul 2012 17:14:47 -0400 Subject: Build: Add a newline at the end of manifest files. --- build/tasks/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/tasks/build.js b/build/tasks/build.js index b746ad712..bbe63da2c 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -76,7 +76,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function( }); grunt.file.write( manifest.name + ".jquery.json", - JSON.stringify( manifest, null, "\t" ) ); + JSON.stringify( manifest, null, "\t" ) + "\n" ); }); }); }); -- cgit v1.2.3