fix(setup): add newline at the end of package.json

This commit is contained in:
Christoph Witzko 2015-05-04 09:18:08 +02:00
parent b38f1e0687
commit 785e7f7b3b

View File

@ -38,5 +38,5 @@ module.exports = function () {
pkg.devDependencies['semantic-release'] = '^' + require('../package.json').version
}
fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2))
fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2) + '\n')
}