@nmshd/typescript-rest 3.2.3 → 3.2.4
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.
|
@@ -2,7 +2,8 @@ name: Publish
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
|
|
5
|
+
tags:
|
|
6
|
+
- '*'
|
|
6
7
|
|
|
7
8
|
jobs:
|
|
8
9
|
run-checks:
|
|
@@ -27,5 +28,6 @@ jobs:
|
|
|
27
28
|
registry-url: https://registry.npmjs.org/
|
|
28
29
|
- run: npm ci
|
|
29
30
|
- run: npm run build
|
|
31
|
+
- run: npm version --no-git-tag-version ${{ github.ref_name }}
|
|
30
32
|
- run: npx enhanced-publish --if-possible --use-preid-as-tag
|
|
31
33
|
needs: ['run-checks']
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: Weekly Release of Dependency Updates
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '0 2 * * 2' # every Tuesday at 02:00 UTC
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
concurrency:
|
|
12
|
+
group: weekly-dependency-release
|
|
13
|
+
cancel-in-progress: false
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
release:
|
|
17
|
+
uses: js-soft/github-actions/.github/workflows/release-dependency-updates.yml@main
|
|
18
|
+
secrets:
|
|
19
|
+
github-token: ${{ secrets.GH_PAT }}
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nmshd/typescript-rest",
|
|
3
|
-
"version": "3.2.3",
|
|
4
3
|
"description": "A Library to create RESTFul APIs with Typescript",
|
|
5
4
|
"keywords": [
|
|
6
5
|
"API",
|
|
@@ -61,27 +60,27 @@
|
|
|
61
60
|
},
|
|
62
61
|
"dependencies": {
|
|
63
62
|
"@types/body-parser": "1.19.6",
|
|
64
|
-
"@types/cookie-parser": "^1.4.
|
|
65
|
-
"@types/express": "^5.0.
|
|
66
|
-
"@types/multer": "^2.
|
|
67
|
-
"body-parser": "^2.
|
|
63
|
+
"@types/cookie-parser": "^1.4.10",
|
|
64
|
+
"@types/express": "^5.0.6",
|
|
65
|
+
"@types/multer": "^2.2.0",
|
|
66
|
+
"body-parser": "^2.3.0",
|
|
68
67
|
"cookie-parser": "^1.4.7",
|
|
69
68
|
"express": "^5.2.1",
|
|
70
|
-
"fs-extra": "^11.3.
|
|
71
|
-
"lodash": "^4.
|
|
72
|
-
"multer": "^2.0
|
|
69
|
+
"fs-extra": "^11.3.6",
|
|
70
|
+
"lodash": "^4.18.1",
|
|
71
|
+
"multer": "^2.2.0",
|
|
73
72
|
"reflect-metadata": "^0.2.2",
|
|
74
73
|
"require-glob": "^4.1.0",
|
|
75
74
|
"swagger-ui-express": "^5.0.1",
|
|
76
|
-
"yaml": "^2.
|
|
75
|
+
"yaml": "^2.9.0"
|
|
77
76
|
},
|
|
78
77
|
"devDependencies": {
|
|
79
|
-
"@js-soft/license-check": "^1.0.
|
|
78
|
+
"@js-soft/license-check": "^1.0.11",
|
|
80
79
|
"@nmshd/typescript-ioc": "^3.2.5",
|
|
81
|
-
"@types/debug": "^4.1.
|
|
80
|
+
"@types/debug": "^4.1.13",
|
|
82
81
|
"@types/fs-extra": "^11.0.4",
|
|
83
82
|
"@types/jest": "^30.0.0",
|
|
84
|
-
"@types/lodash": "^4.17.
|
|
83
|
+
"@types/lodash": "^4.17.24",
|
|
85
84
|
"@types/node": "^24.7.2",
|
|
86
85
|
"@types/request": "^2.48.13",
|
|
87
86
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
@@ -91,11 +90,11 @@
|
|
|
91
90
|
"eslint-config-prettier": "^9.1.0",
|
|
92
91
|
"eslint-plugin-jsdoc": "^48.0.4",
|
|
93
92
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
94
|
-
"jest": "^30.2
|
|
95
|
-
"prettier": "^3.
|
|
93
|
+
"jest": "^30.4.2",
|
|
94
|
+
"prettier": "^3.9.4",
|
|
96
95
|
"request": "^2.88.2",
|
|
97
|
-
"rimraf": "^6.
|
|
98
|
-
"ts-jest": "^29.4.
|
|
96
|
+
"rimraf": "^6.1.3",
|
|
97
|
+
"ts-jest": "^29.4.11",
|
|
99
98
|
"typescript": "^5.9.3"
|
|
100
99
|
},
|
|
101
100
|
"engines": {
|
|
@@ -108,5 +107,6 @@
|
|
|
108
107
|
],
|
|
109
108
|
"publishConfig": {
|
|
110
109
|
"access": "public"
|
|
111
|
-
}
|
|
110
|
+
},
|
|
111
|
+
"version": "3.2.4"
|
|
112
112
|
}
|