Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/jod
lts/krypton
2 changes: 1 addition & 1 deletion apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-jod AS base
FROM node:lts-krypton AS base
WORKDIR /app
ARG RELEASE_VERSION
ENV GATEWAY_DATABASE_URL="file:/dev/null"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class InstrumentRecordsService {
});

worker.on('error', (error) => {
reject(error);
reject(error as Error);
void worker.terminate();
});
});
Expand Down
2 changes: 1 addition & 1 deletion apps/gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-jod AS base
FROM node:lts-krypton AS base
WORKDIR /app
ARG RELEASE_VERSION
ENV GATEWAY_DATABASE_URL=file:/app/sqlite/gateway.db
Expand Down
2 changes: 1 addition & 1 deletion apps/outreach/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default defineConfig({
'docs/fr/docs': '../../docs/fr'
}
}),
tailwind()
tailwind() as any
],
// this is necessary because the MDX imports will attempt to resolve from their actual location
resolve: {
Expand Down
3 changes: 1 addition & 2 deletions apps/outreach/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/*": ["*"]
"@/*": ["./src/*"]
}
},
"include": ["astro.config.ts", "src/**/*"]
Expand Down
4 changes: 2 additions & 2 deletions apps/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"neverthrow": "catalog:",
"react": "workspace:react__19.x@*",
"react-dom": "workspace:react-dom__19.x@*",
"react-dropzone": "^14.3.8",
"react-dropzone": "catalog:",
"react-error-boundary": "^5.0.0",
"react-resizable-panels": "^2.1.7",
"stacktrace-parser": "^0.1.11",
"ts-pattern": "workspace:ts-pattern__5.x@*",
"zod": "workspace:zod__3.x@*",
"zod-validation-error": "^3.4.0",
"zustand": "^5.0.3"
"zustand": "catalog:"
},
"devDependencies": {
"@opendatacapture/vite-plugin-runtime": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-jod AS base
FROM node:lts-krypton AS base
ARG RELEASE_VERSION
WORKDIR /app
ENV PNPM_HOME="/pnpm"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"type-fest": "workspace:type-fest__4.x@*",
"xlsx": "^0.18.5",
"zod": "workspace:zod__3.x@*",
"zustand": "^4.5.6"
"zustand": "catalog:"
},
"devDependencies": {
"@opendatacapture/release-info": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"packageManager": "pnpm@10.34.1",
"license": "Apache-2.0",
"engines": {
"node": ">=v22.11.0"
"node": ">=v24.15.0"
},
"scripts": {
"build": "env-cmd turbo run build",
Expand Down Expand Up @@ -40,7 +40,7 @@
"@swc/core": "^1.10.9",
"@swc/helpers": "^0.5.15",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.x",
"@types/node": "24.x",
"@vitest/browser": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"dotenv": "^16.4.7",
Expand Down
4 changes: 3 additions & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@
"lodash-es": "workspace:lodash-es__4.x@*",
"lucide-react": "^0.473.0",
"motion": "catalog:",
"react-dropzone": "catalog:",
"serialize-error": "catalog:",
"stacktrace-parser": "^0.1.11",
"ts-pattern": "workspace:ts-pattern__5.x@*"
"ts-pattern": "workspace:ts-pattern__5.x@*",
"zustand": "catalog:"
},
"devDependencies": {
"@opendatacapture/instrument-stubs": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/serve-instrument/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@opendatacapture/react-core": "workspace:*",
"@opendatacapture/runtime-internal": "workspace:*",
"@opendatacapture/runtime-meta": "workspace:",
"@tailwindcss/postcss": "^4.2.0",
"postcss": "^8.5.6",
"@tailwindcss/postcss": "catalog:",
"postcss": "^8.5.15",
"react": "workspace:react__19.x@*",
"react-dom": "workspace:react-dom__19.x@*",
"zod": "workspace:zod__3.x@*"
Expand Down
Loading
Loading