Skip to content
Merged
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
3 changes: 1 addition & 2 deletions components/HomePage/HomeSponsorSection/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import {
OC_URL,
} from '../../Sponsors/tiers.mjs';

// TODO(avivkeller): Give these components proper exports
import withIsland from '../../../node_modules/@doc-kit/generator-react/src/html/ui/islands/withIsland.jsx';
import withIsland from '@doc-kit/generator-react/html/ui/islands/withIsland.jsx';

const SPONSORS_URL = '/about/sponsors';

Expand Down
3 changes: 1 addition & 2 deletions components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import PostLayout from '../layouts/Post/index.jsx';
import PageNotFoundLayout from '../layouts/PageNotFound/index.jsx';
import '../styles/index.css';

// TODO(avivkeller): Give these components proper exports
import DefaultLayout from '../node_modules/@doc-kit/generator-react/src/html/ui/components/Layout/index.jsx';
import DefaultLayout from '@doc-kit/generator-react/html/ui/components/Layout/index.jsx';

const LAYOUTS = {
home: HomeLayout,
Expand Down
5 changes: 2 additions & 3 deletions components/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import { baseURL } from '#theme/config';
import { toPublicLink } from '../utils/helpers/urls.mjs';
import Logo from '#theme/Logo';

// TODO(avivkeller): Give these components proper exports
import SearchBox from '../node_modules/@doc-kit/generator-react/src/html/ui/components/SearchBox';
import ThemeToggle from '../node_modules/@doc-kit/generator-react/src/html/ui/components/ThemeToggle.jsx';
import SearchBox from '@doc-kit/generator-react/html/ui/components/SearchBox/index.jsx';
import ThemeToggle from '@doc-kit/generator-react/html/ui/components/ThemeToggle.jsx';

const versionBase = new URL(baseURL).pathname;

Expand Down
3 changes: 1 addition & 2 deletions layouts/Sponsors/Board.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import useSponsors from '../../hooks/useSponsors.mjs';

import styles from './index.module.css';

// TODO(avivkeller): Give these components proper exports
import withIsland from '../../node_modules/@doc-kit/generator-react/src/html/ui/islands/withIsland.jsx';
import withIsland from '@doc-kit/generator-react/html/ui/islands/withIsland.jsx';

/**
* Everything on the Sponsors page
Expand Down
138 changes: 60 additions & 78 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,30 @@
"prepare": "husky"
},
"dependencies": {
"@doc-kit/cli": "^1.0.0",
"@doc-kit/generator-react": "^0.1.0",
"@doc-kit/cli": "^1.0.1",
"@doc-kit/generator-react": "^0.2.0",
"@tailwindcss/vite": "^4.3.3",
"@vercel/analytics": "^2.0.1",
"@vercel/functions": "^3.9.5",
"@vercel/speed-insights": "^2.0.0",
"classnames": "^2.5.1",
"gray-matter": "^4.0.3",
"lucide-preact": "^1.33.0",
"lucide-preact": "^1.37.0",
"npm-run-all": "^4.1.5",
"semver": "^7.8.5",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"webpack": "^5.109.2"
"typedoc-plugin-markdown": "^4.13.0",
"webpack": "^5.110.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.3",
"eslint": "^10.9.0",
"eslint": "^10.9.1",
"feed": "^6.0.0",
"globals": "^17.11.0",
"handlebars": "^4.7.9",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"lint-staged": "^17.4.1",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
Expand Down
Loading