diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-07-19 17:14:47 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-07-19 17:14:47 -0400 |
commit | ebc8210b1f78cb261c4109ef99f3596198780b83 (patch) | |
tree | f33f3ed1ee795cfb15d2e29d2f236f2fe9b1ca3f /build | |
parent | 763a111552e5c02befd72a03b08cfc9ed06b7855 (diff) | |
download | jquery-ui-ebc8210b1f78cb261c4109ef99f3596198780b83.tar.gz jquery-ui-ebc8210b1f78cb261c4109ef99f3596198780b83.zip |
Build: Add a newline at the end of manifest files.
Diffstat (limited to 'build')
-rw-r--r-- | build/tasks/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
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" ); }); }); }); |