From 75032e45e74080c07f3548a43a3676b2baf43f16 Mon Sep 17 00:00:00 2001 From: cliffhall Date: Tue, 25 Nov 2025 15:22:58 -0500 Subject: [PATCH 1/2] * In package.json - added engines section with node version >= 20 --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 3328ead..a343ffa 100644 --- a/package.json +++ b/package.json @@ -93,5 +93,8 @@ "typedoc": "^0.27.8", "typescript-eslint": "^8.25.0", "zod": "^3.24.2" + }, + "engines": { + "node": ">=20" } } From 259a4d67291ea9b4dcdf17a7df67c2bf77b10201 Mon Sep 17 00:00:00 2001 From: cliffhall Date: Tue, 25 Nov 2025 15:24:32 -0500 Subject: [PATCH 2/2] * In package.json and VERSION - bump to 1.0.4 --- VERSION | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index a6a256f..c35a0ec 100644 --- a/VERSION +++ b/VERSION @@ -4,11 +4,11 @@ Release Date: 11/25/25 Platform: Typescript Version: 1 Revision: 0 - Minor: 3 + Minor: 4 Authors: Cliff Hall -------------------------------------------------------------------------- 1.0.0 Initial port from the AS3 source. 1.0.1 NPM Package link 1.0.2 Fix entry point in package.json -1.0.3 Add github workflow file for build/publish +1.0.3 - 1.0.4 Add github workflow for build/publish diff --git a/package.json b/package.json index a343ffa..c9dd93a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@puremvc/puremvc-typescript-util-state-machine", - "version": "1.0.3", + "version": "1.0.4", "description": "PureMVC State Machine Utility for TypeScript", "main": "./bin/cjs/index.js", "module": "./bin/esm/index.js",