Skip to content

Commit 7cf14c2

Browse files
committed
fix(bump): Fix script error.
1 parent 500430b commit 7cf14c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bump.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ console.log(`Bumping version to ${targetVersion}`)
88
const manifest = JSON.parse(readFileSync('manifest.json', 'utf8'))
99
const { minAppVersion } = manifest
1010
manifest.version = targetVersion
11-
writeFileSync('manifest.json', JSON.stringify(manifest, null, '4'))
11+
writeFileSync('manifest.json', JSON.stringify(manifest, null, 4))
1212

1313
// update versions.json with target version and minAppVersion from manifest.json
1414
const versions = JSON.parse(readFileSync('versions.json', 'utf8'))
1515
versions[targetVersion] = minAppVersion
16-
writeFileSync('versions.json', JSON.stringify(versions, null, '4'))
16+
writeFileSync('versions.json', JSON.stringify(versions, null, 4))

0 commit comments

Comments
 (0)