tsoft-cli 3.10.0 → 3.10.1

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
@@ -5,6 +5,12 @@ All notable changes to T-Soft CLI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.10.1] - 2026-07-30
9
+
10
+ ### Fixed
11
+ - The declared Node.js requirement now matches what the CLI actually needs: `>=20.19.0` instead of `>=18.0.0`. The old figure had not been true for some time. `@inquirer/prompts` dropped Node 18 and 19 entirely, and `chokidar` requires 20.19.0 or newer, so installing on Node 18 produced an `EBADENGINE` warning and then failed at runtime on any interactive command. Nothing about the CLI changed — the requirement is simply stated honestly now, so npm can warn before installation rather than leaving you with a broken command.
12
+ - The same version is now stated consistently in `package.json`, the README requirements list, and CONTRIBUTING. Previously all three repeated the outdated `18.0.0`, and the figure on the npm package page comes straight from `package.json`.
13
+
8
14
  ## [3.10.0] - 2026-07-30
9
15
 
10
16
  ### Added
package/README.md CHANGED
@@ -10,7 +10,7 @@ npm install -g tsoft-cli
10
10
 
11
11
  ## Requirements
12
12
 
13
- - Node.js >= 18.0.0
13
+ - Node.js >= 20.19.0
14
14
 
15
15
  ## Quick Start
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsoft-cli",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "Command-line tool for tsoft360 theme development and management",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -8,14 +8,15 @@
8
8
  "tsoft": "src/index.js"
9
9
  },
10
10
  "engines": {
11
- "node": ">=18.0.0"
11
+ "node": ">=20.19.0"
12
12
  },
13
13
  "scripts": {
14
14
  "start": "node src/index.js",
15
15
  "dev": "node --watch src/index.js",
16
16
  "test": "vitest run",
17
17
  "test:watch": "vitest",
18
- "check-locales": "node scripts/check-locales.js"
18
+ "check-locales": "node scripts/check-locales.js",
19
+ "check-engine-floor": "node scripts/check-engine-floor.js"
19
20
  },
20
21
  "keywords": [
21
22
  "tsoft",
@@ -54,6 +55,7 @@
54
55
  "url": "git+https://github.com/tekrom/tsoft-cli.git"
55
56
  },
56
57
  "devDependencies": {
58
+ "semver": "^7.8.5",
57
59
  "vitest": "^4.1.5"
58
60
  }
59
61
  }