Skip to content
Open
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,4 @@ repos:
language: system

fail_fast: true
default_stages: [commit]
default_stages: [pre-commit]
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
nodejs 20.19.5
nodejs 24.12.0
python 3.12.12
poetry 2.2.1
shellcheck 0.11.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,4 @@ cfn-guard:
create-npmrc:
gh auth login --scopes "read:packages"; \
echo "//npm.pkg.github.com/:_authToken=$$(gh auth token)" > .npmrc
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> .npmrc
echo "@NHSDigital:registry=https://npm.pkg.github.com" >> .npmrc
2 changes: 1 addition & 1 deletion SAMtemplates/functions/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Globals:
MemorySize: 256
Architectures:
- x86_64
Runtime: nodejs20.x
Runtime: nodejs24.x
Environment:
Variables:
STACK_NAME: !Ref StackName
Expand Down
970 changes: 356 additions & 614 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/capabilityStatement/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"
import type {JestConfigWithTsJest} from "ts-jest"

const jestConfig: JestConfigWithTsJest = {
Expand Down
2 changes: 1 addition & 1 deletion packages/common/utilities/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {JestConfigWithTsJest} from "ts-jest"
import defaultConfig from "../../../jest.default.config"
import defaultConfig from "../../../jest.default.config.ts"

const jestConfig: JestConfigWithTsJest = {
...defaultConfig,
Expand Down
2 changes: 1 addition & 1 deletion packages/distanceSelling/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {JestConfigWithTsJest} from "ts-jest"
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"

const jestConfig: JestConfigWithTsJest = {
...defaultConfig,
Expand Down
2 changes: 1 addition & 1 deletion packages/enrichPrescriptions/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {JestConfigWithTsJest} from "ts-jest"
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"

const jestConfig: JestConfigWithTsJest = {
...defaultConfig,
Expand Down
2 changes: 1 addition & 1 deletion packages/getMyPrescriptions/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {JestConfigWithTsJest} from "ts-jest"
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"

const jestConfig: JestConfigWithTsJest = {
...defaultConfig,
Expand Down
2 changes: 1 addition & 1 deletion packages/nhsd-pfp-sandbox/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"
import type {JestConfigWithTsJest} from "ts-jest"

const jestConfig: JestConfigWithTsJest = {
Expand Down
2 changes: 1 addition & 1 deletion packages/serviceSearchClient/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"
import type {JestConfigWithTsJest} from "ts-jest"

const jestConfig: JestConfigWithTsJest = {
Expand Down
4 changes: 2 additions & 2 deletions packages/specification/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"license": "MIT",
"type": "module",
"engines": {
"node": "20.10.x",
"npm": "10.2.x"
"node": "24.12.x",
"npm": "11.6.2"
},
"scripts": {
"lint": "redocly lint --extends=recommended --config ./redocly.yaml",
Expand Down
2 changes: 1 addition & 1 deletion packages/statusLambda/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import defaultConfig from "../../jest.default.config"
import defaultConfig from "../../jest.default.config.ts"
import type {JestConfigWithTsJest} from "ts-jest"

const jestConfig: JestConfigWithTsJest = {
Expand Down
Loading