Skip to content

Commit 3b40bba

Browse files
committed
build: add new line to package.json
1 parent 0cd7c0a commit 3b40bba

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@
9393
"prettier": "^3.5.3",
9494
"tsx": "^4.20.3"
9595
}
96-
}
96+
}

scripts/npm-publish.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ const registry = 'https://wombat-dressing-room.appspot.com';
4747

4848
// Write the package.json back to disk so the version is in sync.
4949
packageJson.version = version;
50-
await writeFile(packageJsonPath, JSON.stringify(packageJson, undefined, 2));
50+
await writeFile(
51+
packageJsonPath,
52+
JSON.stringify(packageJson, undefined, 2) + '\n'
53+
);
5154

5255
console.log('Done! 🎉');
5356
console.log('Remember to push the changed package.json!');

0 commit comments

Comments
 (0)