From a530ad2ccfeee342bd614357f939899231529775 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 13 Feb 2015 22:33:12 -0800 Subject: [PATCH] Add newline to package.json when bumping version. --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 0293a60e5..2eec0282d 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -367,7 +367,7 @@ module.exports = (grunt) -> oldversion = pkg.meta.version pkg.meta.version = version grunt.config 'pkg', pkg - grunt.file.write 'package.json', JSON.stringify(pkg, null, 2) + grunt.file.write 'package.json', JSON.stringify(pkg, null, 2) + '\n' grunt.log.ok "Version updated from v#{oldversion} to v#{version}." grunt.registerTask 'updcl', 'Update the changelog', ->