@ministryofjustice/frontend-types 1.0.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change log
2
2
 
3
+ ## 2.0.0
4
+
5
+ Drops support for node engine 20 (no longer maintained) and adds 26 (will be LTS later this year).
6
+
3
7
  ## 1.0.0
4
8
 
5
9
  Updated the GOV.UK frontend types file to allow the `ConfigurableComponent` config field to be a `NestedObject`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ministryofjustice/frontend-types",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "",
5
5
  "author": "hmpps-developers",
6
6
  "license": "MIT",
@@ -20,7 +20,7 @@
20
20
  "dist/**/*"
21
21
  ],
22
22
  "engines": {
23
- "node": "20 || 22 || 24"
23
+ "node": "22 || 24 || 26"
24
24
  },
25
25
  "scripts": {
26
26
  "build": "mkdir -p ./dist && cat ./src/@types/*.d.ts > ./dist/index.d.ts",