Skip to content

Commit f71929a

Browse files
committed
refactor: dependencies with version
1 parent d8beb32 commit f71929a

File tree

6 files changed

+1760
-2013
lines changed

6 files changed

+1760
-2013
lines changed

.eslintrc.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module.exports = {
22
rules: {
3-
"@typescript-eslint/ban-ts-comment": "off",
3+
"@typescript-eslint/ban-ts-comment": [
4+
"error",
5+
{
6+
"ts-nocheck": false,
7+
},
8+
],
49
},
510
};

.github/workflows/ci.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
2-
name: CI
3-
4-
on:
5-
pull_request:
6-
push:
7-
branches:
8-
- main
9-
10-
jobs:
11-
build:
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
16-
with:
17-
node-version: '20'
18-
cache: 'npm'
19-
20-
- run: npm ci
21-
- run: npm run lint
22-
- run: npm run build
1+
2+
name: CI
3+
4+
on:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '20'
18+
cache: 'npm'
19+
20+
- run: npm ci
21+
- run: npm run lint
22+
- run: npm run build

.source/source.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
defineCollections,
44
frontmatterSchema,
55
metaSchema
6-
} from "fumadocs-mdx/config";
6+
} from "fumadocs-mdx/config/zod-3";
77
var docs = defineCollections({
88
type: "doc",
99
dir: "content/docs",

0 commit comments

Comments
 (0)