Skip to content

Commit 569208e

Browse files
committed
Add README and use Bun file read
1 parent d081676 commit 569208e

File tree

4 files changed

+43
-16
lines changed

4 files changed

+43
-16
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [2024-11-09] [Add README and use Bun file read](https://github.com/RubricLab/package/commit/72413ce1826d5a064539d622f0c567dd8d65e94d)
12
- [2024-10-24] [add notify-monorepo action](https://github.com/RubricLab/package/commit/84c7a866ed0bae6327ace3f1d7eaffde66ec22c8)
23
- [2024-10-22] [null commit](https://github.com/RubricLab/package/commit/3ed1bb87967f633a8a20b79e7e64a93ae92ebec0)
34
- [2024-10-18] [post-commit hook](https://github.com/RubricLab/package/commit/8d490e082b47dfe7cc169bae481a36f0cc1337b4)

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Package
2+
3+
A tool for scaffolding and publishing NPM packages quickly.
4+
5+
## Getting Started
6+
7+
### Global Installation
8+
9+
Run `bun add -g @rubriclab/package`.
10+
11+
### Per-project Installation
12+
13+
Run `bun add -d @rubriclab/package`.
14+
15+
### Init a package
16+
17+
Ensure you have a `package.json`. If not, run `bun init`.
18+
19+
Run `bunx rubriclab-setuppackage`. This will add a few resources to your package:
20+
21+
- a publish workflow
22+
- on push to main, the NPM package will be bumped and auto-published
23+
- scripts
24+
- `lint`: checks for code issues
25+
- `format`: tries to fix code issues
26+
- `bleed`: updates all dependencies to `latest`
27+
- `clean`: clears node modules and cache

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rubriclab/package",
3-
"version": "0.0.87",
3+
"version": "0.0.88",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/RubricLab/package.git"
@@ -20,7 +20,7 @@
2020
"format": "bun x biome format --write .",
2121
"lint": "bun x biome check .",
2222
"lint:fix": "bun x biome lint . --write --unsafe",
23-
"clean": "rm -rf .next && rm -rf node_modules"
23+
"clean": "rm -rf .next; rm bun.lockb; rm -rf node_modules"
2424
},
2525
"devDependencies": {
2626
"@types/bun": "latest"

scripts/post-install.ts

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
#!/usr/bin/env bun
22

3-
import { readFileSync, writeFileSync } from 'node:fs'
43
import { join } from 'node:path'
54

6-
const projectRoot = process.cwd()
7-
const pkgJsonPath = join(projectRoot, 'package.json')
8-
95
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()
1110

12-
pkgJson['simple-git-hooks'] = {
13-
'post-commit': 'bun run rubriclab-postcommit'
14-
}
11+
pkgJson['simple-git-hooks'] = { 'post-commit': 'bun run rubriclab-postcommit' }
1512

1613
pkgJson.scripts = pkgJson.scripts || {}
1714
pkgJson.scripts.prepare = 'bun x simple-git-hooks'
@@ -20,14 +17,16 @@ try {
2017
pkgJson.scripts.format = 'bun x biome format --write .'
2118
pkgJson.scripts.lint = 'bun x biome check .'
2219
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' }
2821

2922
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.')
3130
} catch (error) {
3231
console.error('Postinstall script failed:', error)
3332
process.exit(1)

0 commit comments

Comments
 (0)