Skip to content

Commit df8ea16

Browse files
committed
chore(all): updated packages
1 parent 7844eb9 commit df8ea16

File tree

29 files changed

+955
-541
lines changed

29 files changed

+955
-541
lines changed

docs/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

docs/next.config.mjs

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
import nextra from 'nextra';
2+
import { dirname } from 'path';
3+
import { fileURLToPath } from 'url';
24

3-
const withNextra = nextra({
4-
// ... Other Nextra config options
5-
});
5+
const __filename = fileURLToPath(import.meta.url);
6+
const __dirname = dirname(__filename);
7+
8+
const withNextra = nextra({});
69

7-
// You can include other Next.js configuration options here, in addition to Nextra settings:
8-
export default withNextra({});
10+
export default withNextra({
11+
turbopack: {
12+
root: __dirname,
13+
},
14+
});

docs/package-lock.json

Lines changed: 651 additions & 279 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@
1414
},
1515
"author": "Thomas Grey",
1616
"dependencies": {
17-
"@fortawesome/fontawesome-svg-core": "^7.0.0",
18-
"@fortawesome/free-brands-svg-icons": "^7.0.0",
19-
"@fortawesome/free-regular-svg-icons": "^7.0.0",
20-
"@fortawesome/free-solid-svg-icons": "^7.0.0",
21-
"@fortawesome/react-fontawesome": "^0.2.2",
22-
"next": "^15.4.6",
23-
"nextra": "^4.3.0",
24-
"nextra-theme-docs": "^4.3.0",
25-
"react": "^19.1.0",
26-
"react-dom": "^19.1.0"
17+
"@fortawesome/fontawesome-svg-core": "^7.0.1",
18+
"@fortawesome/free-brands-svg-icons": "^7.0.1",
19+
"@fortawesome/free-regular-svg-icons": "^7.0.1",
20+
"@fortawesome/free-solid-svg-icons": "^7.0.1",
21+
"@fortawesome/react-fontawesome": "^3.0.2",
22+
"next": "^15.5.3",
23+
"nextra": "^4.4.0",
24+
"nextra-theme-docs": "^4.4.0",
25+
"react": "^19.1.1",
26+
"react-dom": "^19.1.1"
2727
},
2828
"devDependencies": {
29-
"@tailwindcss/postcss": "^4.1.10",
30-
"@types/node": "^24.0.3",
31-
"@types/react": "^19.1.8",
29+
"@tailwindcss/postcss": "^4.1.13",
30+
"@types/node": "^24.5.2",
31+
"@types/react": "^19.1.13",
3232
"copyfiles": "^2.4.1",
33-
"eslint": "^9.29.0",
34-
"pagefind": "^1.3.0",
33+
"eslint": "^9.36.0",
34+
"pagefind": "^1.4.0",
3535
"postcss": "^8.5.6",
36-
"tailwindcss": "^4.1.10"
36+
"tailwindcss": "^4.1.13"
3737
}
3838
}

0 commit comments

Comments
 (0)