Skip to content

Commit de521f8

Browse files
committed
attempt to fix post-commit hook issue
1 parent a4cdbb2 commit de521f8

File tree

1 file changed

+29
-26
lines changed

1 file changed

+29
-26
lines changed

package.json

+29-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
{
2-
"name": "@rubriclab/package",
3-
"version": "0.0.84",
4-
"repository": {
5-
"type": "git",
6-
"url": "https://github.com/RubricLab/package.git"
7-
},
8-
"bin": {
9-
"rubriclab-postcommit": "./scripts/post-commit.ts",
10-
"rubriclab-setuppackage": "./scripts/post-install.ts"
11-
},
12-
"private": false,
13-
"simple-git-hooks": {
14-
"post-commit": "bun run rubriclab-postcommit"
15-
},
16-
"scripts": {
17-
"postinstall": "bun x @rubriclab/package rubriclab-setuppackage",
18-
"prepare": "bun x simple-git-hooks",
19-
"bleed": "bun x npm-check-updates -u",
20-
"format": "bun x biome format --write .",
21-
"lint": "bun x biome check .",
22-
"lint:fix": "bun x biome lint .",
23-
"clean": "rm -rf .next && rm -rf node_modules"
24-
},
25-
"devDependencies": {
26-
"@types/bun": "latest"
27-
}
2+
"name": "@rubriclab/package",
3+
"version": "0.0.84",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/RubricLab/package.git"
7+
},
8+
"bin": {
9+
"rubriclab-postcommit": "./scripts/post-commit.ts",
10+
"rubriclab-setuppackage": "./scripts/post-install.ts"
11+
},
12+
"private": false,
13+
"simple-git-hooks": {
14+
"post-commit": "bun run ./scripts/post-install.ts"
15+
},
16+
"scripts": {
17+
"postinstall": "bun x @rubriclab/package rubriclab-setuppackage",
18+
"prepare": "bun x simple-git-hooks",
19+
"bleed": "bun x npm-check-updates -u",
20+
"format": "bun x biome format --write .",
21+
"lint": "bun x biome check .",
22+
"lint:fix": "bun x biome lint . --write --unsafe",
23+
"clean": "rm -rf .next && rm -rf node_modules"
24+
},
25+
"devDependencies": {
26+
"@types/bun": "latest"
27+
},
28+
"publishConfig": {
29+
"access": "public"
30+
}
2831
}

0 commit comments

Comments
 (0)