mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07: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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue