Skip to content

Commit

Permalink
Update deps in iconoir.com
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Dec 17, 2024
1 parent 2bf8087 commit 2eb49e0
Show file tree
Hide file tree
Showing 6 changed files with 1,044 additions and 994 deletions.
2 changes: 1 addition & 1 deletion iconoir.com/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
7 changes: 4 additions & 3 deletions iconoir.com/next.config.js → iconoir.com/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
output: 'export',
reactStrictMode: true,
compiler: {
Expand All @@ -10,4 +11,4 @@ const nextConfig = {
},
};

module.exports = nextConfig;
export default nextConfig;
17 changes: 8 additions & 9 deletions iconoir.com/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"name": "iconoir.com",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev --turbo",
"build": "next build",
"start": "pnpm dlx serve out",
"lint": "next lint"
},
"devDependencies": {
"@nodesecure/npm-registry-sdk": "^2.1.0",
"@octokit/rest": "^20.0.2",
"@nodesecure/npm-registry-sdk": "3.0.0",
"@octokit/rest": "21.0.2",
"@react-aria/focus": "^3.15.0",
"@react-aria/i18n": "^3.9.0",
"@react-aria/slider": "^3.7.3",
Expand All @@ -19,27 +19,26 @@
"@react-types/slider": "^3.7.0",
"@types/animejs": "^3.1.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/node": "22.10.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-window": "^1.8.8",
"@types/remark-prism": "1.3.7",
"animejs": "^3.2.2",
"csvtojson": "^2.0.10",
"eslint-config-next": "15.1.0",
"iconoir-react": "workspace:*",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^14.0.4",
"next-mdx-remote": "^4.4.1",
"next": "^15.1.0",
"next-mdx-remote": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.10",
"remark-gfm": "^3.0.1",
"remark-gfm": "4.0.0",
"remark-prism": "^1.3.6",
"scule": "^1.1.1",
"styled-components": "^6.1.1",
"typescript": "^5.3.3",
"typescript": "5.7.2",
"use-resize-observer": "^9.1.0"
}
}
1 change: 1 addition & 0 deletions iconoir.com/pages/docs/[...slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import process from 'node:process';
import { SuggestLibrary } from '@/components/SuggestLibrary';
import { serialize } from 'next-mdx-remote/serialize';
import remarkGfm from 'remark-gfm';
// @ts-expect-error untyped
import remarkPrism from 'remark-prism';
import styled from 'styled-components';
import {
Expand Down
1 change: 1 addition & 0 deletions iconoir.com/pages/docs/changelog.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { serialize } from 'next-mdx-remote/serialize';
import remarkGfm from 'remark-gfm';
// @ts-expect-error untyped
import remarkPrism from 'remark-prism';
import {
ChangelogEntry,
Expand Down
Loading

0 comments on commit 2eb49e0

Please sign in to comment.