@zola_do/nestjs-shared 0.2.14 → 0.2.16
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.
- package/README.md +1 -0
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ Meta package that re-exports all `@zola_do/*` packages for one-shot installation
|
|
|
29
29
|
| [@zola_do/docx](../docx) | DOCX template processing |
|
|
30
30
|
| [@zola_do/document-manipulator](../document-manipulator) | PDF/DOCX merge and conversion |
|
|
31
31
|
| [@zola_do/workflow-engine](../workflow-engine) | State machine workflow converter |
|
|
32
|
+
| [@zola_do/health](../health) | Terminus readiness/liveness health checks |
|
|
32
33
|
|
|
33
34
|
## Installation
|
|
34
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zola_do/nestjs-shared",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.16",
|
|
4
4
|
"description": "Shared package for NestJS applications - re-exports all @zola_do packages",
|
|
5
5
|
"author": "zolaDO",
|
|
6
6
|
"license": "ISC",
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"clean": "rimraf dist",
|
|
29
29
|
"typecheck": "tsc --noEmit",
|
|
30
|
-
"build": "
|
|
31
|
-
"prepublishOnly": "
|
|
30
|
+
"build": "rimraf dist && tsc",
|
|
31
|
+
"prepublishOnly": "rimraf dist && tsc"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@zola_do/collection-query": "^0.2.
|
|
35
|
-
"@zola_do/typeorm": "^0.2.
|
|
36
|
-
"@zola_do/authorization": "^0.2.
|
|
37
|
-
"@zola_do/crud": "^0.2.
|
|
38
|
-
"@zola_do/audit": "^0.2.
|
|
39
|
-
"@zola_do/email": "^0.2.
|
|
40
|
-
"@zola_do/minio": "^0.2.
|
|
41
|
-
"@zola_do/seaweed": "^0.2.
|
|
42
|
-
"@zola_do/docx": "^0.2.
|
|
43
|
-
"@zola_do/document-manipulator": "^0.2.
|
|
44
|
-
"@zola_do/workflow-engine": "^0.2.
|
|
45
|
-
"@zola_do/health": "^0.2.
|
|
34
|
+
"@zola_do/collection-query": "^0.2.15",
|
|
35
|
+
"@zola_do/typeorm": "^0.2.15",
|
|
36
|
+
"@zola_do/authorization": "^0.2.15",
|
|
37
|
+
"@zola_do/crud": "^0.2.15",
|
|
38
|
+
"@zola_do/audit": "^0.2.15",
|
|
39
|
+
"@zola_do/email": "^0.2.15",
|
|
40
|
+
"@zola_do/minio": "^0.2.15",
|
|
41
|
+
"@zola_do/seaweed": "^0.2.15",
|
|
42
|
+
"@zola_do/docx": "^0.2.15",
|
|
43
|
+
"@zola_do/document-manipulator": "^0.2.15",
|
|
44
|
+
"@zola_do/workflow-engine": "^0.2.15",
|
|
45
|
+
"@zola_do/health": "^0.2.15"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"rimraf": "^6.1.3",
|