From 34ba8b6cb110f6869db89bc27f31065387895074 Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Tue, 29 Jul 2014 21:38:42 -0700 Subject: [PATCH] Add a newline at the end of component.json --- tasks/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); }); } -- 2.47.2