这是indexloc提供的服务,不要输入任何密码
Skip to content

chore: bump TS, Next, and fix warnings and peer deps #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 13, 2021
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
2 changes: 1 addition & 1 deletion create-turbo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"strip-ansi": "^7.0.1",
"ts-jest": "^27.1.1",
"tsup": "^5.10.3",
"typescript": "^4.5.2"
"typescript": "^4.5.3"
},
"files": [
"dist",
Expand Down
8 changes: 4 additions & 4 deletions docs/components/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,28 +127,28 @@ function Page() {

<div className="grid grid-cols-2 gap-8 mt-6 md:grid-cols-4">
<div className="flex justify-center col-span-1 filter contrast-50 grayscale dark:opacity-50 md:col-span-2 lg:col-span-1">
<img
<Image
className="h-6 "
src="/images/logos/vercel.svg"
alt="Vercel"
/>
</div>
<div className="flex justify-center col-span-1 filter contrast-50 grayscale dark:opacity-50 md:col-span-2 lg:col-span-1">
<img
<Image
className="h-6 "
src="/images/logos/lattice.svg"
alt="Lattice"
/>
</div>
<div className="flex justify-center col-span-1 filter contrast-50 grayscale dark:opacity-50 md:col-span-2 lg:col-span-1">
<img
<Image
className="h-6"
src="/images/logos/teespring.svg"
alt="TeeSpring"
/>
</div>
<div className="flex justify-center col-span-1 filter contrast-50 grayscale dark:opacity-50 md:col-span-2 lg:col-span-1">
<img
<Image
className="h-6"
src="/images/logos/makeswift.svg"
alt="Makeswift"
Expand Down
2 changes: 1 addition & 1 deletion docs/nextra-theme-docs/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React, {
useState,
useEffect,
} from "react";
import matchSorter from "match-sorter";
import { matchSorter } from "match-sorter";
import cn from "classnames";
import { useRouter } from "next/router";
import Link from "next/link";
Expand Down
22 changes: 16 additions & 6 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@reach/skip-nav": "^0.10.5",
"@mdx-js/react": "^2.0.0-rc.2",
"@reach/skip-nav": "^0.16.0",
"@react-aria/button": "^3.3.1",
"@react-aria/focus": "^3.2.2",
"@react-aria/i18n": "^3.3.0",
Expand All @@ -32,30 +33,39 @@
"axios": "^0.24.0",
"copy-to-clipboard": "^3.3.1",
"focus-visible": "^5.1.0",
"github-slugger": "^1.4.0",
"grapheme-splitter": "^1.0.4",
"intersection-observer": "^0.10.0",
"js-cookie": "^3.0.1",
"markdown-to-jsx": "^6.11.4",
"match-sorter": "^6.3.1",
"next": "^12.0.7",
"next-themes": "^0.0.15",
"nextra": "^2.0.0-beta.2",
"nextra-theme-docs": "^2.0.0-beta.2",
"nextra": "2.0.0-beta.5",
"parse-git-url": "^1.0.1",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"react-innertext": "^1.1.5",
"react-intersection-observer": "^8.26.2",
"react-keyframes": "^1.0.0-canary.3",
"swr": "^1.0.1"
"swr": "^1.0.1",
"title": "^3.4.3"
},
"devDependencies": {
"@types/react": "^17.0.34",
"@babel/core": "^7.16.0",
"@types/react": "^17.0.37",
"autoprefixer": "^10.2.6",
"csstype": "2.6.2",
"eslint": "^7.23.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"postcss": "^8.3.5",
"tailwindcss": "^2.2.4",
"typescript": "^4.4.4"
"typescript": "^4.5.3",
"webpack": "^5.65.0"
},
"resolutions": {
"react": "^17.0.2",
Expand Down
Loading