Skip to content

Commit

Permalink
- Upgraded node version, pnpm version, and packages
Browse files Browse the repository at this point in the history
- Updated seed data to include hardcoded ids
  • Loading branch information
michaelschwobe committed Oct 10, 2023
1 parent 3630e34 commit ea17dd0
Show file tree
Hide file tree
Showing 7 changed files with 230 additions and 218 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
# If changing these, match the same values from:
# - `/Dockerfile`
# - `/package.json`
node-version: [20.7.0]
pnpm-version: [8.8.0]
node-version: [20.8.0]
pnpm-version: [8.9.0]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
# If changing these, match the same values from:
# - `/Dockerfile`
# - `/package.json`
node-version: [20.7.0]
pnpm-version: [8.8.0]
node-version: [20.8.0]
pnpm-version: [8.9.0]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -92,8 +92,8 @@ jobs:
# If changing these, match the same values from:
# - `/Dockerfile`
# - `/package.json`
node-version: [20.7.0]
pnpm-version: [8.8.0]
node-version: [20.8.0]
pnpm-version: [8.9.0]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -130,8 +130,8 @@ jobs:
# If changing these, match the same values from:
# - `/Dockerfile`
# - `/package.json`
node-version: [20.7.0]
pnpm-version: [8.8.0]
node-version: [20.8.0]
pnpm-version: [8.9.0]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# If changing this, match the same values from:
# - `/.github/workflows/deploy.yml`
# - `/package.json`
ARG NODE_VERSION=20.7.0
ARG NODE_VERSION=20.8.0
FROM node:${NODE_VERSION}-slim as base

LABEL fly_launch_runtime="Remix/Prisma"
Expand All @@ -19,7 +19,7 @@ ENV NODE_ENV="production"
# If changing this, match the same values from:
# - `/.github/workflows/deploy.yml`
# - `/package.json`
ARG PNPM_VERSION=8.8.0
ARG PNPM_VERSION=8.9.0
RUN npm install -g pnpm@$PNPM_VERSION


Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ TagsForDays extends traditional bookmarking with advanced organization and searc
### General

- TODO: Add more E2E tests
- TODO: Add more Unit tests
- TODO: Add feature: all/model-filtered data resouce route
- TODO: Add feature: db writes/resets when testing
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@conform-to/react": "^0.9.0",
"@conform-to/zod": "^0.9.0",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.4.1",
"@prisma/client": "^5.4.2",
"@radix-ui/react-select": "^1.2.2",
"@remix-run/css-bundle": "^2.0.1",
"@remix-run/node": "^2.0.1",
Expand All @@ -50,7 +50,7 @@
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"isbot": "^3.7.0",
"prisma": "^5.4.1",
"prisma": "^5.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sonner": "^1.0.3",
Expand All @@ -72,15 +72,15 @@
"@total-typescript/ts-reset": "^0.4.2",
"@types/bcryptjs": "^2.4.4",
"@types/cookie": "^0.5.2",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@types/node": "^20.8.4",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^12.9.0",
"happy-dom": "^12.9.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3",
Expand All @@ -90,8 +90,8 @@
"vitest": "^0.34.6"
},
"engines": {
"node": ">=20.7.0",
"pnpm": ">=8.8.0"
"node": ">=20.8.0",
"pnpm": ">=8.9.0"
},
"packageManager": "pnpm@8.8.0"
"packageManager": "pnpm@8.9.0"
}
Loading

0 comments on commit ea17dd0

Please sign in to comment.