@futdevpro/fsm-dynamo 1.14.29 → 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
|
|
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",
|