1
1
#!/usr/bin/env bun
2
2
3
- import { readFileSync , writeFileSync } from 'node:fs'
4
3
import { join } from 'node:path'
5
4
6
- const projectRoot = process . cwd ( )
7
- const pkgJsonPath = join ( projectRoot , 'package.json' )
8
-
9
5
try {
10
- const pkgJson = JSON . parse ( readFileSync ( pkgJsonPath , 'utf-8' ) )
6
+ const projectRoot = process . cwd ( )
7
+ const pkgJsonPath = join ( projectRoot , 'package.json' )
8
+
9
+ const pkgJson = await Bun . file ( pkgJsonPath ) . json ( )
11
10
12
- pkgJson [ 'simple-git-hooks' ] = {
13
- 'post-commit' : 'bun run rubriclab-postcommit'
14
- }
11
+ pkgJson [ 'simple-git-hooks' ] = { 'post-commit' : 'bun run rubriclab-postcommit' }
15
12
16
13
pkgJson . scripts = pkgJson . scripts || { }
17
14
pkgJson . scripts . prepare = 'bun x simple-git-hooks'
@@ -20,14 +17,16 @@ try {
20
17
pkgJson . scripts . format = 'bun x biome format --write .'
21
18
pkgJson . scripts . lint = 'bun x biome check .'
22
19
pkgJson . scripts [ 'lint:fix' ] = 'bun x biome lint . --write --unsafe'
23
- pkgJson . publishConfig = {
24
- access : 'public'
25
- }
26
-
27
- writeFileSync ( pkgJsonPath , JSON . stringify ( pkgJson , null , 2 ) )
20
+ pkgJson . publishConfig = { access : 'public' }
28
21
29
22
const file = Bun . file ( join ( import . meta. dir , '..' , 'workflows/publish-package.yml' ) )
30
- await Bun . write ( join ( projectRoot , '.github/workflows/publish.yml' ) , file )
23
+
24
+ await Promise . all ( [
25
+ Bun . write ( pkgJsonPath , JSON . stringify ( pkgJson , null , 2 ) ) ,
26
+ Bun . write ( join ( projectRoot , '.github/workflows/publish.yml' ) , file )
27
+ ] )
28
+
29
+ console . log ( 'Set up package successfully.' )
31
30
} catch ( error ) {
32
31
console . error ( 'Postinstall script failed:' , error )
33
32
process . exit ( 1 )
0 commit comments