Skip to content

Commit d77d0af

Browse files
authored
chore(*): bump packages (#51)
1 parent 02ba983 commit d77d0af

File tree

5 files changed

+2691
-2473
lines changed

5 files changed

+2691
-2473
lines changed

docs/offlegacy.org/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@
1212
"clean": "rimraf ./next ./node_modules"
1313
},
1414
"dependencies": {
15-
"@amplitude/analytics-browser": "^2.11.11",
15+
"@amplitude/analytics-browser": "^2.33.0",
1616
"@offlegacy/event-tracker": "workspace:*",
1717
"@uidotdev/usehooks": "^2.4.1",
1818
"codehike": "^1.0.7",
1919
"lucide-react": "^0.525.0",
20-
"motion": "^12.23.0",
21-
"next": "15.3.5",
22-
"nextra": "^4.2.17",
23-
"nextra-theme-docs": "^4.2.17",
24-
"react": "^19.1.1",
25-
"react-dom": "^19.1.1",
26-
"sonner": "^2.0.6"
20+
"motion": "^12.23.26",
21+
"next": "15.4.10",
22+
"nextra": "^4.6.1",
23+
"nextra-theme-docs": "^4.6.1",
24+
"react": "^19.2.3",
25+
"react-dom": "^19.2.3",
26+
"sonner": "^2.0.7"
2727
},
2828
"devDependencies": {
29-
"@eslint/eslintrc": "^3.3.1",
30-
"@types/node": "^20",
31-
"@types/react": "^19.1.9",
32-
"@types/react-dom": "^19.1.7",
29+
"@eslint/eslintrc": "^3.3.3",
30+
"@types/node": "^20.19.27",
31+
"@types/react": "^19.2.7",
32+
"@types/react-dom": "^19.2.3",
3333
"eslint-config-next": "15.3.5",
34-
"pagefind": "^1.3.0",
35-
"postcss": "^8",
34+
"pagefind": "^1.4.0",
35+
"postcss": "^8.5.6",
3636
"prettier-plugin-tailwindcss": "^0.6.13",
37-
"tailwindcss": "^3.4.1",
38-
"typescript": "^5"
37+
"tailwindcss": "^3.4.19",
38+
"typescript": "^5.9.3"
3939
}
4040
}

docs/offlegacy.org/src/app/[lang]/[[...mdxPath]]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ const Wrapper = useMDXComponents().wrapper;
1919
export default async function Page(props: { params: Promise<{ mdxPath: string[]; lang: Lang }> }) {
2020
const params = await props.params;
2121
const result = await importPage(params.mdxPath, params.lang);
22-
const { default: MDXContent, toc, metadata } = result;
22+
const { default: MDXContent, metadata, toc, sourceCode } = result;
2323

2424
return (
2525
<>
26-
<Wrapper toc={toc} metadata={metadata}>
26+
<Wrapper metadata={metadata} toc={toc} sourceCode={sourceCode}>
2727
<MDXContent {...props} params={params} />
2828
</Wrapper>
2929
<TrackPageView params={{ title: metadata.title }} />

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "event-tracker",
3+
"version": "1.4.0",
34
"private": true,
45
"homepage": "https://event-tracker.offlegacy.org",
56
"bugs": "https://github.com/offlegacy/event-tracker/issues",
@@ -21,28 +22,27 @@
2122
"clean": "turbo run clean"
2223
},
2324
"devDependencies": {
24-
"@cspell/eslint-plugin": "^8.17.1",
25-
"@eslint-react/eslint-plugin": "^1.22.1",
26-
"@testing-library/jest-dom": "^6.6.3",
27-
"@testing-library/react": "^16.1.0",
28-
"@testing-library/user-event": "^14.5.2",
25+
"@cspell/eslint-plugin": "^8.19.4",
26+
"@eslint-react/eslint-plugin": "^1.53.1",
27+
"@testing-library/jest-dom": "^6.9.1",
28+
"@testing-library/react": "^16.3.1",
29+
"@testing-library/user-event": "^14.6.1",
2930
"@types/eslint": "^9.6.1",
30-
"@typescript-eslint/eslint-plugin": "^8.18.2",
31-
"@typescript-eslint/parser": "^8.18.2",
32-
"eslint": "^9.17.0",
33-
"eslint-import-resolver-typescript": "^3.7.0",
34-
"eslint-plugin-import": "^2.31.0",
35-
"eslint-plugin-react-hooks": "^5.1.0",
31+
"@typescript-eslint/eslint-plugin": "^8.50.1",
32+
"@typescript-eslint/parser": "^8.50.1",
33+
"eslint": "^9.39.2",
34+
"eslint-import-resolver-typescript": "^3.10.1",
35+
"eslint-plugin-import": "^2.32.0",
36+
"eslint-plugin-react-hooks": "^5.2.0",
3637
"husky": "^9.1.7",
3738
"jsdom": "^25.0.1",
38-
"lint-staged": "^15.3.0",
39-
"prettier": "^3.4.2",
40-
"rimraf": "^6.0.1",
41-
"tsdown": "^0.13.1",
42-
"turbo": "^2.5.5",
39+
"lint-staged": "^15.5.2",
40+
"prettier": "^3.7.4",
41+
"rimraf": "^6.1.2",
42+
"tsdown": "^0.18.3",
43+
"turbo": "^2.7.2",
4344
"typescript": "^5.7.2",
44-
"typescript-eslint": "^8.18.2",
45-
"vitest": "^2.1.8"
46-
},
47-
"version": "1.4.0"
45+
"typescript-eslint": "^8.50.1",
46+
"vitest": "^2.1.9"
47+
}
4848
}

packages/event-tracker/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"exports": {
2424
".": {
2525
"import": {
26-
"types": "./dist/index.d.ts",
27-
"default": "./dist/index.js"
26+
"types": "./dist/index.d.mts",
27+
"default": "./dist/index.mjs"
2828
},
2929
"require": {
3030
"types": "./dist/index.d.cts",
@@ -51,8 +51,9 @@
5151
"dist"
5252
],
5353
"devDependencies": {
54-
"@types/react": "^19.1.10",
55-
"react": "^19.1.1"
54+
"@types/react": "^19.2.7",
55+
"react": "^19.2.3",
56+
"react-dom": "^19.2.3"
5657
},
5758
"peerDependencies": {
5859
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"

0 commit comments

Comments
 (0)