From: Iskren Chernev Date: Wed, 30 Jul 2014 04:38:42 +0000 (-0700) Subject: Add a newline at the end of component.json X-Git-Tag: 2.8.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34ba8b6cb110f6869db89bc27f31065387895074;p=thirdparty%2Fmoment.git Add a newline at the end of component.json --- diff --git a/tasks/component.js b/tasks/component.js index 04b95ae2f..cc11fa685 100644 --- a/tasks/component.js +++ b/tasks/component.js @@ -5,6 +5,6 @@ module.exports = function (grunt) { config.files = grunt.file.expand('locale/*.js'); config.files.unshift('moment.js'); - grunt.file.write('component.json', JSON.stringify(config, true, 2)); + grunt.file.write('component.json', JSON.stringify(config, true, 2) + '\n'); }); }