Skip to content

Commit

Permalink
🔼 Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
craigary committed Nov 14, 2023
1 parent deef0da commit 94ef0ac
Show file tree
Hide file tree
Showing 4 changed files with 1,358 additions and 1,022 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ yarn-error.log*
.vercel
public/robots.txt
public/sitemap.xml
.env*.local
14 changes: 7 additions & 7 deletions components/BlogPost.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Link from 'next/link'
import { useConfig } from '@/lib/config'
import FormattedDate from '@/components/FormattedDate'
import FormattedDate from "@/components/FormattedDate";
import { useConfig } from "@/lib/config";
import Link from "next/link";

const BlogPost = ({ post }) => {
const BLOG = useConfig()
const BLOG = useConfig();

return (
<Link href={`${BLOG.path}/${post.slug}`}>
Expand All @@ -23,7 +23,7 @@ const BlogPost = ({ post }) => {
</main>
</article>
</Link>
)
}
);
};

export default BlogPost
export default BlogPost;
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"dependencies": {
"axios": "^1.3.4",
"axios": "^1.6.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"dayjs": "^1.11.10",
"feed": "^4.2.2",
"gitalk": "^1.7.2",
"mermaid": "^10.0.2",
"next": "^13.2.4",
"gitalk": "^1.8.0",
"mermaid": "^10.6.1",
"next": "^14.0.2",
"notion-client": "^6.16.0",
"notion-utils": "^6.16.0",
"preact": "^10.5.15",
"preact": "^10.19.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-cusdis": "^2.1.3",
Expand All @@ -40,12 +40,12 @@
"use-ackee": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"next-sitemap": "^4.0.5",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.1"
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.2",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5"
},
"bugs": {
"url": "https://github.com/craigary/nobelium/issues",
Expand Down
Loading

0 comments on commit 94ef0ac

Please sign in to comment.