Skip to content

Commit 215ced4

Browse files
🔧 chore: Update config
1 parent 25b21a6 commit 215ced4

File tree

6 files changed

+28
-7
lines changed

6 files changed

+28
-7
lines changed

.bunfig.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[install.lockfile]
2+
3+
save = false

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@ test-output
4242

4343
# misc
4444
# add other ignore file below
45-
build
4645
.vercel
46+
.next
47+
build
4748
public/dist
4849
docs-dist
49-
.next
50+
bun.lockb
51+
docs/.dumi/*
52+
public/docs

docs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
"isolatedModules": true
2626
},
2727
"exclude": ["node_modules"],
28-
"include": [".", ".dumi/**/*", ".dumirc.ts", "../src"]
28+
"include": [".", ".dumirc.ts", "../src"]
2929
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@
55
"description": "This is the plugin template for LobeChat plugin development",
66
"homepage": "https://github.com/lobehub/chat-plugin-template",
77
"repository": "https://github.com/lobehub/chat-plugin-template.git",
8+
"workspaces": [
9+
"docs/*",
10+
"./*"
11+
],
812
"scripts": {
913
"build": "npm run docs:build && next build",
1014
"ci": "npm run lint && npm run type-check",
1115
"dev": "next dev -p 3400",
1216
"docs:build": "cd docs && npm run build",
13-
"docs:dev": "npm run dev --prefix ./docs",
17+
"docs:dev": "cd docs && npm run dev",
1418
"lint": "eslint \"{src,api,docs}/**/*.{js,jsx,ts,tsx}\" --fix",
1519
"lint:md": "remark . --quiet --frail --output",
1620
"lint:style": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
@@ -71,6 +75,7 @@
7175
"eslint": "^8",
7276
"father": "4.3.1",
7377
"husky": "^8",
78+
"lerna": "^7",
7479
"lint-staged": "^13",
7580
"prettier": "^3",
7681
"remark": "^14",

pnpm-workspace.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

renovate.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"automerge": false,
4+
"dependencyDashboard": true,
5+
"ignoreDeps": [],
6+
"labels": ["dependencies"],
7+
"postUpdateOptions": ["yarnDedupeHighest"],
8+
"prConcurrentLimit": 30,
9+
"prHourlyLimit": 0,
10+
"rebaseWhen": "conflicted",
11+
"schedule": "on sunday before 6:00am",
12+
"timezone": "UTC"
13+
}

0 commit comments

Comments
 (0)