Skip to content

Commit

Permalink
⬆️ Upgrade dependencies (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
wei authored Apr 12, 2024
1 parent 07a4e8e commit 7dd83ad
Show file tree
Hide file tree
Showing 8 changed files with 2,336 additions and 2,496 deletions.
5 changes: 5 additions & 0 deletions .changeset/lazy-comics-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'socialify': minor
---

Upgrade dependencies
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
"node": true
},
"extends": [
"react-app",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jest/recommended",
"prettier-standard"
],
"settings": {
"react": {
"version": "detect"
}
},
"parserOptions": {
"project": "./tsconfig.json"
},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install Dependencies
run: yarn
Expand Down
4 changes: 2 additions & 2 deletions common/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Pattern, Theme } from './types/configType'
import {
SimpleIcon,
siGithub,
siC,
siCsharp,
Expand Down Expand Up @@ -37,8 +38,7 @@ import {
siWebassembly,
siPuppet,
siElixir
} from 'simple-icons/icons'
import { SimpleIcon } from 'simple-icons'
} from 'simple-icons'
import {
signal,
charlieBrown,
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"test": "jest",
"test:watch": "jest --watch",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
Expand All @@ -22,53 +22,53 @@
"prepare": "is-ci || husky install"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@resvg/resvg-wasm": "^2.2.0",
"@vercel/analytics": "^0.1.6",
"autoprefixer": "^10.4.13",
"badgen": "^3.2.2",
"clsx": "^1.2.1",
"@changesets/cli": "^2.27.1",
"@resvg/resvg-wasm": "^2.6.2",
"@vercel/analytics": "^1.2.2",
"autoprefixer": "^10.4.19",
"badgen": "^3.2.3",
"clsx": "^2.1.0",
"copee": "^1.0.6",
"cross-fetch": "^3.1.5",
"daisyui": "^2.46.1",
"hero-patterns": "^2.1.0",
"is-ci": "^3.0.1",
"next": "^13.1.1",
"postcss": "^8.4.21",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"satori": "^0.10.13",
"simple-icons": "^7.21.0",
"styled-jsx": "^5.1.1",
"tailwindcss": "^3.2.4",
"typescript": "~4.9.4",
"use-debounce": "^9.0.2",
"simple-icons": "^11.12.0",
"styled-jsx": "^5.1.2",
"tailwindcss": "^3.4.3",
"typescript": "~5.4.5",
"use-debounce": "^10.0.0",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.6.0",
"graphql": "^16.8.1",
"graphql-compiler": "^1.7.0",
"husky": "^8.0.3",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.7",
"prettier-config-standard": "^5.0.0"
},
Expand Down
1 change: 0 additions & 1 deletion src/components/header/__snapshots__/header.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ exports[`Header renders 1`] = `
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<title />
<path
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
/>
Expand Down
Loading

0 comments on commit 7dd83ad

Please sign in to comment.