Skip to content

Commit a4cdbb2

Browse files
committed
Use Bun file APIs
1 parent 39653ca commit a4cdbb2

File tree

3 files changed

+31
-24
lines changed

3 files changed

+31
-24
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [2024-10-04] [Use Bun file APIs](https://github.com/RubricLab/package/commit/17f26299c5908b883d4d659f28423d162adb4942)
12
- [2024-10-04] [bleed for mono](https://github.com/RubricLab/package/commit/4caf565ae9d7d81f0564b843e120673d907819db)
23
- [2024-10-03] [gitignore turbo, format](https://github.com/RubricLab/package/commit/9b47d2616c4cbcba32b321ac7df187cd4f9b45b0)
34
- [2024-10-02] [modify postinstall](https://github.com/RubricLab/package/commit/12084d1b43480f29c84ea0e108cc67f2aed9055b)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rubriclab/package",
3-
"version": "0.0.83",
3+
"version": "0.0.84",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/RubricLab/package.git"

scripts/post-commit.ts

+29-23
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,40 @@
11
#!/usr/bin/env bun
22

33
import { spawnSync } from 'bun'
4-
import { readFileSync, writeFileSync, existsSync } from 'node:fs'
54

65
if (process.env.AMENDING) {
76
process.exit(0)
87
}
98

9+
const run = (
10+
command: `${string} ${string}`,
11+
options?: {
12+
env?: { [key: string]: string }
13+
}
14+
) => {
15+
const { stdout } = spawnSync(command.split(' '), options)
16+
return stdout.toString().trim()
17+
}
18+
19+
const CHANGELOG_PATH = 'CHANGELOG.md'
20+
const PACKAGE_PATH = 'package.json'
21+
1022
try {
11-
const packageJsonContent = readFileSync('package.json', 'utf-8')
12-
const packageJson = JSON.parse(packageJsonContent)
23+
const packageJsonContent = Bun.file(PACKAGE_PATH)
24+
const packageJson = await packageJsonContent.json()
25+
26+
console.log({ packageJson })
1327

1428
const versionParts = packageJson.version.split('.').map(Number)
1529
versionParts[2] += 1
1630
packageJson.version = versionParts.join('.')
1731

18-
writeFileSync('package.json', `${JSON.stringify(packageJson, null, 2)}\n`)
32+
await Bun.write(PACKAGE_PATH, `${JSON.stringify(packageJson, null, 2)}\n`)
1933

20-
const commitHash = spawnSync(['git', 'rev-parse', 'HEAD']).stdout.toString().trim()
21-
22-
const commitMessage = spawnSync(['git', 'log', '-1', '--pretty=%B']).stdout.toString().trim()
23-
24-
const commitDate = spawnSync(['git', 'log', '-1', '--pretty=%cd', '--date=short'])
25-
.stdout.toString()
26-
.trim()
27-
28-
let repositoryUrl = spawnSync(['git', 'config', '--get', 'remote.origin.url'])
29-
.stdout.toString()
30-
.trim()
34+
const commitHash = run('git rev-parse HEAD')
35+
const commitMessage = run('git log -1 --pretty=%B')
36+
const commitDate = run('git log -1 --pretty=%cd --date=short')
37+
let repositoryUrl = run('git config --get remote.origin.url')
3138

3239
if (repositoryUrl.endsWith('.git')) {
3340
repositoryUrl = repositoryUrl.slice(0, -4)
@@ -37,22 +44,21 @@ try {
3744
}
3845

3946
const commitUrl = `${repositoryUrl}/commit/${commitHash}`
40-
4147
const changelogEntry = `- [${commitDate}] [${commitMessage}](${commitUrl})\n`
4248

43-
const changelogPath = 'CHANGELOG.md'
4449
let changelogContent = ''
45-
if (existsSync(changelogPath)) {
46-
changelogContent = readFileSync(changelogPath, 'utf-8')
50+
const changelog = Bun.file(CHANGELOG_PATH)
51+
const changelogExists = await changelog.exists()
52+
if (changelogExists) {
53+
changelogContent = await changelog.text()
4754
} else {
4855
changelogContent = '# Changelog\n\n'
4956
}
5057

51-
writeFileSync(changelogPath, `${changelogEntry}${changelogContent}`)
52-
53-
spawnSync(['git', 'add', 'package.json', 'CHANGELOG.md'])
58+
await Bun.write(CHANGELOG_PATH, `${changelogEntry}${changelogContent}`)
5459

55-
spawnSync(['git', 'commit', '--amend', '--no-verify', '--no-edit'], {
60+
run('git add package.json CHANGELOG.md')
61+
run('git commit --amend --no-verify --no-edit', {
5662
env: { ...process.env, AMENDING: 'true' }
5763
})
5864
} catch (error) {

0 commit comments

Comments
 (0)