Skip to content

Commit a75153a

Browse files
committed
modify postinstall
1 parent 72ae901 commit a75153a

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [2024-10-02] [modify postinstall](https://github.com/RubricLab/package/commit/12084d1b43480f29c84ea0e108cc67f2aed9055b)
12
- [2024-10-02] [vscode](https://github.com/RubricLab/package/commit/bacb3288084f058a7a9e27ef25ae198686665bd1)
23
- [2024-10-02] [sync](https://github.com/RubricLab/package/commit/c7dbeb3143a103e9a24951008062f73c27433ecd)
34
- [2024-10-02] [Add Bun types](https://github.com/RubricLab/package/commit/53e2afab76d750efb07f5d91f183f904647e1f70)

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.80",
3+
"version": "0.0.81",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/RubricLab/package.git"

scripts/post-install.ts

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ try {
1717
pkgJson.scripts.prepare = 'bun x simple-git-hooks'
1818
pkgJson.scripts.bleed = 'bun x npm-check-updates -u && bun i'
1919
pkgJson.scripts.clean = 'rm -rf .next && rm -rf node_modules'
20+
pkgJson.scripts.format = 'bun x biome format --write .'
21+
pkgJson.scripts.lint = 'bun x biome check .'
22+
pkgJson.scripts['lint:fix'] = 'bun x biome lint . --write --unsafe'
23+
pkgJson.publishConfig = {
24+
access: 'public'
25+
}
2026

2127
writeFileSync(pkgJsonPath, JSON.stringify(pkgJson, null, 2))
2228

0 commit comments

Comments
 (0)