@futdevpro/fsm-dynamo 1.14.28 → 1.14.30
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.
|
@@ -149,6 +149,11 @@ jobs:
|
|
|
149
149
|
run: |
|
|
150
150
|
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
|
151
151
|
|
|
152
|
+
- name: Get safe-chain version
|
|
153
|
+
run: |
|
|
154
|
+
VERSION=$(curl -s https://api.github.com/repos/AikidoSec/safe-chain/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | sed 's/^v//')
|
|
155
|
+
echo "SAFE_CHAIN_VERSION=$VERSION" >> $GITHUB_ENV
|
|
156
|
+
|
|
152
157
|
- name: Install safe-chain
|
|
153
158
|
run: |
|
|
154
159
|
curl -fsSL https://raw.githubusercontent.com/AikidoSec/safe-chain/main/install-scripts/install-safe-chain.sh | sh -s -- --ci
|
|
@@ -157,13 +162,9 @@ jobs:
|
|
|
157
162
|
run: |
|
|
158
163
|
npm i -g pnpm
|
|
159
164
|
|
|
160
|
-
# - name: TEST safe-chain (this should fail the build)
|
|
161
|
-
# run: |
|
|
162
|
-
# pnpm i safe-chain-test
|
|
163
|
-
|
|
164
165
|
- name: Install Packages
|
|
165
166
|
run: |
|
|
166
|
-
pnpm i
|
|
167
|
+
pnpm i --safe-chain-skip-minimum-package-age
|
|
167
168
|
|
|
168
169
|
- name: Build
|
|
169
170
|
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
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futdevpro/fsm-dynamo",
|
|
3
|
-
"version": "01.14.
|
|
3
|
+
"version": "01.14.30",
|
|
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",
|
|
7
7
|
"tgzFolderName": "dynamo-fsm",
|
|
8
8
|
"systemName": "dynamo"
|
|
9
9
|
},
|
|
10
|
+
"author": "Future Development Program Ltd.",
|
|
11
|
+
"license": "ISC",
|
|
12
|
+
"homepage": "futdevpro.hu/projects/dynamo",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/futdevpro/dynamo-fsm/issues"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/futdevpro/dynamo-fsm.git"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"typescript",
|
|
22
|
+
"full-stack",
|
|
23
|
+
"dynamo"
|
|
24
|
+
],
|
|
10
25
|
"scripts": {
|
|
11
26
|
"prep": "npm i -g pnpm rimraf nodemon jasmine && pnpm i",
|
|
12
27
|
"preprep-setup-safechain-windows": "iex (iwr \"https://raw.githubusercontent.com/AikidoSec/safe-chain/main/install-scripts/install-safe-chain.ps1\" -UseBasicParsing)",
|
|
@@ -183,10 +198,6 @@
|
|
|
183
198
|
"data-handler": [ "build/_modules/data-handler/index.d.ts" ]
|
|
184
199
|
}
|
|
185
200
|
},
|
|
186
|
-
"keywords": [],
|
|
187
|
-
"author": "Future Development Program Ltd.",
|
|
188
|
-
"license": "ISC",
|
|
189
|
-
"homepage": "https:/futdevpro.hu/projects/dynamo",
|
|
190
201
|
"peerDependencies": {
|
|
191
202
|
"rxjs": "7.8.1"
|
|
192
203
|
},
|
|
@@ -200,7 +211,7 @@
|
|
|
200
211
|
"uuid": "11.1.0"
|
|
201
212
|
},
|
|
202
213
|
"devDependencies": {
|
|
203
|
-
"@futdevpro/dynamo-eslint": "1.14.
|
|
214
|
+
"@futdevpro/dynamo-eslint": "1.14.27",
|
|
204
215
|
"@types/jasmine": "~4.3.5",
|
|
205
216
|
"@typescript-eslint/eslint-plugin": "^8.41.0",
|
|
206
217
|
"@typescript-eslint/parser": "^8.41.0",
|