fix(version): preserve package formatting

This commit is contained in:
2026-08-24 16:01:16 +02:00
parent 2430f6e667
commit 9b14d8e9f0
+1 -1
View File
@@ -24,7 +24,7 @@ function getLockFile() {
function writeVersions(version) {
const pkg = readJson(packageFilePath);
pkg.version = version;
writeJson(packageFilePath, pkg, 2);
writeJson(packageFilePath, pkg, 4);
const lock = getLockFile();