@dotcom-tool-kit/config 1.1.1 → 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.
- package/CHANGELOG.md +20 -0
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -74,6 +74,26 @@
|
|
|
74
74
|
* dependencies
|
|
75
75
|
* @dotcom-tool-kit/schemas bumped from ^1.8.0 to ^1.9.0
|
|
76
76
|
|
|
77
|
+
## [2.0.0](https://github.com/Financial-Times/dotcom-tool-kit/compare/config-v1.1.1...config-v2.0.0) (2025-10-28)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### ⚠ BREAKING CHANGES
|
|
81
|
+
|
|
82
|
+
* declare Node engines in all libraries
|
|
83
|
+
|
|
84
|
+
### Features
|
|
85
|
+
|
|
86
|
+
* declare Node engines in all libraries ([648d4d0](https://github.com/Financial-Times/dotcom-tool-kit/commit/648d4d0267d329655056ad38614b6659c80f5409))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Dependencies
|
|
90
|
+
|
|
91
|
+
* The following workspace dependencies were updated
|
|
92
|
+
* dependencies
|
|
93
|
+
* @dotcom-tool-kit/conflict bumped from ^1.0.1 to ^2.0.0
|
|
94
|
+
* @dotcom-tool-kit/plugin bumped from ^1.1.0 to ^2.0.0
|
|
95
|
+
* @dotcom-tool-kit/validated bumped from ^1.0.3 to ^2.0.0
|
|
96
|
+
|
|
77
97
|
## [1.1.1](https://github.com/Financial-Times/dotcom-tool-kit/compare/config-v1.1.0...config-v1.1.1) (2025-05-06)
|
|
78
98
|
|
|
79
99
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib",
|
|
6
6
|
"scripts": {
|
|
@@ -10,8 +10,11 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dotcom-tool-kit/conflict": "^
|
|
14
|
-
"@dotcom-tool-kit/plugin": "^
|
|
15
|
-
"@dotcom-tool-kit/validated": "^
|
|
13
|
+
"@dotcom-tool-kit/conflict": "^2.0.0",
|
|
14
|
+
"@dotcom-tool-kit/plugin": "^2.0.0",
|
|
15
|
+
"@dotcom-tool-kit/validated": "^2.0.0"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=20.x"
|
|
16
19
|
}
|
|
17
20
|
}
|