Skip to content

Commit

Permalink
Merge pull request #15 from falsepopsky/dev
Browse files Browse the repository at this point in the history
db: add banlist `04/07/2024`
  • Loading branch information
falsepopsky authored Jun 21, 2024
2 parents 75e9781 + 1cbe8a0 commit 0474431
Show file tree
Hide file tree
Showing 8 changed files with 727 additions and 683 deletions.
4 changes: 2 additions & 2 deletions .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.12.2",
"version": "20.15.0",
"nvmVersion": "latest"
}
},
Expand All @@ -21,5 +21,5 @@
]
}
},
"postCreateCommand": "corepack enable && pnpm install"
"postCreateCommand": "corepack enable && corepack pnpm install"
}
11 changes: 3 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,24 @@ on:
- main

env:
PNPM_VERSION: 9.1.1
PNPM_VERSION: 9.4.0

jobs:
lint:
name: ⬣ Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/[email protected]

uses: actions/[email protected]
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}

- name: Setup Node
uses: actions/[email protected]
with:
node-version-file: ".nvmrc"
cache: pnpm

- name: Install dependencies
run: pnpm install
- name: Run lint
Expand All @@ -39,13 +36,11 @@ jobs:
needs: [lint]
steps:
- name: Checkout repo
uses: actions/[email protected]

uses: actions/[email protected]
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}

- name: Setup Node
uses: actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Labeler
on: pull_request
on: pull_request_target

jobs:
labeler:
Expand All @@ -9,6 +9,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5.0.0
- uses: actions/labeler@v5
with:
configuration-path: .github/labeler.yaml
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.13.1
v20.15.0
2 changes: 0 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
async headers() {
return [
{
Expand Down
26 changes: 13 additions & 13 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.13.0",
"next": "^14.2.3",
"@prisma/client": "^5.15.1",
"next": "^14.2.4",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.3",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.15.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
},
"engines": {
"node": "^20.0.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.1.1+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b"
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
}
Loading

0 comments on commit 0474431

Please sign in to comment.