vona-cli-set-api 1.0.390 → 1.0.391
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.
|
@@ -39,12 +39,12 @@ services:
|
|
|
39
39
|
shm_size: 128mb
|
|
40
40
|
# or set shared memory limit when deploy via swarm stack
|
|
41
41
|
volumes:
|
|
42
|
-
- ./docker-compose/data/pg:/var/lib/postgresql/data
|
|
42
|
+
- ./docker-compose/data/pg:/var/lib/postgresql/data
|
|
43
43
|
environment:
|
|
44
44
|
POSTGRES_DB: <%=argv.name%>
|
|
45
45
|
POSTGRES_USER: <%=argv.DATABASE_CLIENT_PG_USER%>
|
|
46
46
|
POSTGRES_PASSWORD: '<%=argv.DATABASE_CLIENT_PG_PASSWORD%>'
|
|
47
|
-
|
|
47
|
+
|
|
48
48
|
mysql:
|
|
49
49
|
image: mysql:8.1
|
|
50
50
|
command:
|
|
@@ -8,7 +8,7 @@ packages:
|
|
|
8
8
|
|
|
9
9
|
hoist: true
|
|
10
10
|
hoistWorkspacePackages: true
|
|
11
|
-
linkWorkspacePackages:
|
|
11
|
+
linkWorkspacePackages: deep
|
|
12
12
|
preferWorkspacePackages: true
|
|
13
13
|
autoInstallPeers: true
|
|
14
14
|
publicHoistPattern:
|
|
@@ -16,13 +16,13 @@ publicHoistPattern:
|
|
|
16
16
|
- '*@babel*'
|
|
17
17
|
- '*eslint*'
|
|
18
18
|
- '*types*'
|
|
19
|
-
-
|
|
20
|
-
-
|
|
19
|
+
- lerna
|
|
20
|
+
- vona
|
|
21
21
|
- '*vona*'
|
|
22
|
-
-
|
|
22
|
+
- cabloy
|
|
23
23
|
- '@cabloy'
|
|
24
24
|
- '*cabloy*'
|
|
25
25
|
- '*@cabloy*'
|
|
26
26
|
- '*why-is-node-running*'
|
|
27
27
|
- '*ts-node*'
|
|
28
|
-
-
|
|
28
|
+
- zod
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IDecoratorEntityOptions } from 'vona-module-a-orm';
|
|
2
|
-
import { Entity, EntityBase } from 'vona-module-a-orm';
|
|
3
2
|
import { Api, v } from 'vona-module-a-openapiutils';
|
|
3
|
+
import { Entity, EntityBase } from 'vona-module-a-orm';
|
|
4
4
|
import { $locale } from '../.metadata/index.ts';
|
|
5
5
|
|
|
6
6
|
export interface IEntityOptions<%=argv.resourceNameCapitalize%> extends IDecoratorEntityOptions {}
|