mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
[travis] shapeup script will indent package.json with tabs
original package.json indented with tabs, but shapeup indent with 4 space.
This commit is contained in:
parent
a533c8b75e
commit
d90c55861f
@ -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)
|
||||
})
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user