@futdevpro/fsm-dynamo 1.14.28 → 1.14.29

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.
@@ -157,13 +157,9 @@ jobs:
157
157
  run: |
158
158
  npm i -g pnpm
159
159
 
160
- # - name: TEST safe-chain (this should fail the build)
161
- # run: |
162
- # pnpm i safe-chain-test
163
-
164
160
  - name: Install Packages
165
161
  run: |
166
- pnpm i
162
+ pnpm i --safe-chain-skip-minimum-package-age
167
163
 
168
164
  - name: Build
169
165
  run: |
package/README.md CHANGED
@@ -7,6 +7,8 @@
7
7
 
8
8
  Dynamo FSM (Full Stack Module) is the foundational TypeScript package that provides the core infrastructure and shared utilities for building full-stack applications. It serves as the base structure for all other Dynamo projects, establishing consistent patterns, type definitions, and interfaces that ensure seamless integration between frontend and backend implementations.
9
9
 
10
+ **Naming Convention**: All exports from Dynamo FSM use the `DyFM_*` prefix (Dynamo Full Stack Module), ensuring clear identification and preventing naming conflicts. This consistent prefix pattern makes it easy to identify FSM utilities, classes, interfaces, and enums throughout your codebase.
11
+
10
12
  ## Table of Contents
11
13
 
12
14
  - [Introduction](#introduction)
@@ -24,6 +26,18 @@ Dynamo FSM (Full Stack Module) is the foundational TypeScript package that provi
24
26
 
25
27
  Dynamo FSM provides core utilities for data manipulation, error handling, logging, state management, and more. It includes modules covering AI integration, real-time communication, location services, data transformation, and testing tools. This package serves as the base structure for all other Dynamo projects.
26
28
 
29
+ **Naming Convention**: All exports from Dynamo FSM use the `DyFM_*` prefix (Dynamo Full Stack Module). This consistent naming pattern makes it easy to identify FSM utilities, classes, interfaces, enums, and constants throughout your codebase. Examples include `DyFM_Array`, `DyFM_Log`, `DyFM_Error`, `DyFM_DataHandler`, and `DyFM_Metadata`.
30
+
31
+ ### Dynamo Packages Using FSM
32
+
33
+ Dynamo FSM is the foundational package used by all other Dynamo packages:
34
+
35
+ - **[Dynamo-NTS](https://www.npmjs.com/package/@futdevpro/dynamo-nts)** - Backend framework for Node.js with TypeScript
36
+ - **[Dynamo NGX Models](https://www.npmjs.com/package/@futdevpro/ngx-dynamo-models)** - Model definitions for Angular applications
37
+ - **[Dynamo NGX](https://www.npmjs.com/package/@futdevpro/ngx-dynamo)** - Angular framework with Material Design and Tailwind CSS
38
+
39
+ All these packages build upon Dynamo FSM's core interfaces, types, and utilities, ensuring consistency and type safety across the entire Dynamo ecosystem.
40
+
27
41
  ### Key Characteristics
28
42
 
29
43
  - **Zero Dependencies**: The foundational package has no dependencies (except peer dependencies), making it the base upon which all other Dynamo packages are built
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.14.28",
3
+ "version": "01.14.29",
4
4
  "description": "Full Stack Model Collection for Dynamic (NodeJS-Typescript) Framework called Dynamo, by Future Development Ltd.",
5
5
  "DyBu_settings": {
6
6
  "packageType": "full-stack-package",
@@ -200,7 +200,7 @@
200
200
  "uuid": "11.1.0"
201
201
  },
202
202
  "devDependencies": {
203
- "@futdevpro/dynamo-eslint": "1.14.23",
203
+ "@futdevpro/dynamo-eslint": "1.14.24",
204
204
  "@types/jasmine": "~4.3.5",
205
205
  "@typescript-eslint/eslint-plugin": "^8.41.0",
206
206
  "@typescript-eslint/parser": "^8.41.0",