Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions docs/offlegacy.org/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,29 @@
"clean": "rimraf ./next ./node_modules"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.11",
"@amplitude/analytics-browser": "^2.33.0",
"@offlegacy/event-tracker": "workspace:*",
"@uidotdev/usehooks": "^2.4.1",
"codehike": "^1.0.7",
"lucide-react": "^0.525.0",
"motion": "^12.23.0",
"next": "15.3.5",
"nextra": "^4.2.17",
"nextra-theme-docs": "^4.2.17",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sonner": "^2.0.6"
"motion": "^12.23.26",
"next": "15.4.10",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sonner": "^2.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^20.19.27",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint-config-next": "15.3.5",
"pagefind": "^1.3.0",
"postcss": "^8",
"pagefind": "^1.4.0",
"postcss": "^8.5.6",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^3.4.1",
"typescript": "^5"
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
}
}
4 changes: 2 additions & 2 deletions docs/offlegacy.org/src/app/[lang]/[[...mdxPath]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ const Wrapper = useMDXComponents().wrapper;
export default async function Page(props: { params: Promise<{ mdxPath: string[]; lang: Lang }> }) {
const params = await props.params;
const result = await importPage(params.mdxPath, params.lang);
const { default: MDXContent, toc, metadata } = result;
const { default: MDXContent, metadata, toc, sourceCode } = result;

return (
<>
<Wrapper toc={toc} metadata={metadata}>
<Wrapper metadata={metadata} toc={toc} sourceCode={sourceCode}>
<MDXContent {...props} params={params} />
</Wrapper>
<TrackPageView params={{ title: metadata.title }} />
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "event-tracker",
"version": "1.4.0",
"private": true,
"homepage": "https://event-tracker.offlegacy.org",
"bugs": "https://github.com/offlegacy/event-tracker/issues",
Expand All @@ -21,28 +22,27 @@
"clean": "turbo run clean"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.17.1",
"@eslint-react/eslint-plugin": "^1.22.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@cspell/eslint-plugin": "^8.19.4",
"@eslint-react/eslint-plugin": "^1.53.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsdown": "^0.13.1",
"turbo": "^2.5.5",
"lint-staged": "^15.5.2",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tsdown": "^0.18.3",
"turbo": "^2.7.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"version": "1.4.0"
"typescript-eslint": "^8.50.1",
"vitest": "^2.1.9"
}
}
9 changes: 5 additions & 4 deletions packages/event-tracker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
Expand All @@ -51,8 +51,9 @@
"dist"
],
"devDependencies": {
"@types/react": "^19.1.10",
"react": "^19.1.1"
"@types/react": "^19.2.7",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
Expand Down
Loading
Loading