Skip to content
Snippets Groups Projects
Commit 8d5adfbd authored by otofune's avatar otofune
Browse files

[travis] shapeup script will indent package.json with tabs

original package.json indented with tabs, but shapeup indent with 4
space.
parent dd7bf7c1
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ fs.readFile(filename, (err, data) => {
if (err) process.exit(2)
const object = JSON.parse(data)
delete object.devDependencies
fs.writeFile(filename, JSON.stringify(object, null, 4) + '\n', err => {
fs.writeFile(filename, JSON.stringify(object, null, '\t') + '\n', err => {
if (err) process.exit(3)
})
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment