Build: Add a newline at the end of manifest files.

This commit is contained in:
Scott González 2012-07-19 17:14:47 -04:00
parent 763a111552
commit ebc8210b1f

View File

@ -76,7 +76,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
}); });
grunt.file.write( manifest.name + ".jquery.json", grunt.file.write( manifest.name + ".jquery.json",
JSON.stringify( manifest, null, "\t" ) ); JSON.stringify( manifest, null, "\t" ) + "\n" );
}); });
}); });
}); });