Skip to content

Commit

Permalink
Merge pull request #20 from falsepopsky/dev
Browse files Browse the repository at this point in the history
 db: update at 2025 banlist
  • Loading branch information
falsepopsky authored Dec 22, 2024
2 parents c4a8dfe + d70df65 commit ea47c72
Show file tree
Hide file tree
Showing 8 changed files with 1,015 additions and 990 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "20.17.0",
"version": "22.12.0",
"nvmVersion": "latest"
}
},
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
Expand All @@ -31,7 +31,7 @@ jobs:
needs: [lint]
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.17.0
v22.12.0
2 changes: 1 addition & 1 deletion app/rush/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getRushBanlists } from '@/lib/queries';
import Link from 'next/link';

export default async function Banlist() {
const years = ['2024', '2023'];
const years = ['2025', '2024', '2023'];
const data = await getRushBanlists();
const dates = data?.map(({ id, slug }) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion app/speed/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getSpeedBanlists } from '@/lib/queries';
import Link from 'next/link';

export default async function Banlist() {
const years = ['2024', '2023', '2022', '2021', '2020', '2019', '2018', '2017'];
const years = ['2025', '2024', '2023', '2022', '2021', '2020', '2019', '2018', '2017'];
const data = await getSpeedBanlists();
const dates = data?.map(({ id, slug }) => {
return {
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"next": "^14.2.13",
"@prisma/client": "^5.22.0",
"next": "^14.2.21",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@types/node": "^20.16.9",
"@types/react": "^18.3.9",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"eslint-config-next": "^14.2.21",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"engines": {
"node": "^20.0.0",
"node": "^22.0.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}
Loading

0 comments on commit ea47c72

Please sign in to comment.