From 39b617fb2a2ed9cb1eb30c5aadc5d03ac685a839 Mon Sep 17 00:00:00 2001 From: Gunnar Wagenknecht Date: Wed, 12 Jul 2023 15:42:21 +0200 Subject: [PATCH] Use tabs --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 3847f6f..e0b9436 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,7 +66,7 @@ gulp.task('prepare_pre_release', function (done) { const insiderPackageJson = Object.assign(packageJson, { version: `${major}.${minor}.${patch}`, }); - fse.writeFileSync("./package.json", JSON.stringify(insiderPackageJson, null, 2)); + fse.writeFileSync("./package.json", JSON.stringify(insiderPackageJson, null, "\t")); done(); });