1
mirror of https://github.com/jakejarvis/domainstack.io.git synced 2025-12-02 19:33:48 -05:00

chore: update Node.js version to 24.x

This commit is contained in:
2025-11-30 16:08:09 -05:00
parent 52e113ae37
commit 69f5dd7ef8
4 changed files with 4 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
node-version: "24"
cache: "pnpm"
- name: Install dependencies

2
.nvmrc
View File

@@ -1 +1 @@
22.21.1
24.11.1

View File

@@ -3,7 +3,6 @@ import { z } from "zod";
import {
certificates,
dnsRecords,
dnsRecordType,
domains,
favicons,
hosting,
@@ -18,9 +17,6 @@ import {
const zRead = createSchemaFactory({ zodInstance: z });
const zWrite = createSchemaFactory({ zodInstance: z, coerce: { date: true } });
// Enums
export const DnsRecordTypeDbSchema = zRead.createSelectSchema(dnsRecordType);
// Providers
export const ProviderSelect = zRead.createSelectSchema(providers);
export const ProviderInsert = zWrite.createInsertSchema(providers);

View File

@@ -15,9 +15,9 @@
"dev": "concurrently --kill-others 'scripts/start-dev-infra.sh' 'next dev'",
"build": "next build",
"start": "next start",
"typecheck": "next typegen && tsc --noEmit",
"lint": "biome check",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
@@ -119,7 +119,7 @@
"vitest": "^4.0.14"
},
"engines": {
"node": ">=22.x"
"node": ">=24.x"
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"pnpm": {