@foray1010/common-presets-utils 8.0.0 → 10.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 CHANGED
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@9.0.0...@foray1010/common-presets-utils@10.0.0) (2026-05-17)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - drop node v20 and v25
11
+
12
+ ### Miscellaneous Chores
13
+
14
+ - drop node v20 and v25
15
+
16
+ ## [9.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@8.0.0...@foray1010/common-presets-utils@9.0.0) (2025-10-31)
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ - require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0`
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ - require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0` ([aae1835](https://github.com/foray1010/common-presets/commit/aae1835f9517621ddc0d71f31bda39e9163213a1))
25
+
6
26
  ## [8.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@7.0.3...@foray1010/common-presets-utils@8.0.0) (2023-11-17)
7
27
 
8
28
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/common-presets-utils",
4
- "version": "8.0.0",
4
+ "version": "10.0.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/common-presets-utils#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -23,10 +23,10 @@
23
23
  "read-pkg-up": "^11.0.0"
24
24
  },
25
25
  "engines": {
26
- "node": "^18.12.0 || >=20.9.0"
26
+ "node": "^22.12.0 || ^24.11.0 || >=26"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "45c8e63f5eebfb9caec22faaf5b961154b924f50"
31
+ "gitHead": "b0dcdf4522afb97a5ee7088c20299aad17738056"
32
32
  }
package/tsconfig.json CHANGED
@@ -3,6 +3,7 @@
3
3
  "extends": "@foray1010/tsconfig/tsconfig.base.json",
4
4
  "compilerOptions": {
5
5
  "allowJs": true,
6
- "checkJs": true
7
- }
6
+ "checkJs": true,
7
+ "types": ["node"],
8
+ },
8
9
  }