@gadmin2n/schematics 0.0.75 → 0.0.77
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/dist/lib/application/files/gadmin2-game-angle-demo/server/.env +3 -3
- package/dist/lib/application/files/gadmin2-game-angle-demo/server/package.json +3 -3
- package/dist/lib/application/files/gadmin2-game-angle-demo/web/package.json +1 -1
- package/package.json +5 -3
- package/dist/lib/application/files/gadmin2-game-angle-demo/server/.env.local +0 -1
|
@@ -18,12 +18,12 @@ TAIHU_BASE=https://tai.it.tencent.com/api/auth-center/oauth2
|
|
|
18
18
|
|
|
19
19
|
#https://tai.it.woa.com/odc/app/list?currentPage=0&pageSize=10
|
|
20
20
|
TAIHU_ODC_CLIENT_ID=oit-erp-app
|
|
21
|
-
TAIHU_ODC_APP_TOKEN=
|
|
21
|
+
TAIHU_ODC_APP_TOKEN=token
|
|
22
22
|
|
|
23
23
|
#https://tai.it.woa.com/apps?currentPage=0&pageSize=10
|
|
24
|
-
TAIHU_APP_TOKEN=
|
|
24
|
+
TAIHU_APP_TOKEN=token
|
|
25
25
|
|
|
26
|
-
EXTERNAL_PAGE_SECRET=
|
|
26
|
+
EXTERNAL_PAGE_SECRET=secret
|
|
27
27
|
|
|
28
28
|
OTEL_TRACES_EXPORTER=otlp
|
|
29
29
|
OTEL_RESOURCE_ATTRIBUTES_TOKEN=xxxx
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@agendajs/postgres-backend": "^3.0.5",
|
|
38
38
|
"@azure/identity": "^4.13.0",
|
|
39
|
-
"@gadmin2n/nest-common": "^0.0.
|
|
39
|
+
"@gadmin2n/nest-common": "^0.0.47",
|
|
40
40
|
"@nestjs/cache-manager": "^3.0.1",
|
|
41
41
|
"@nestjs/common": "^10.4.15",
|
|
42
42
|
"@nestjs/config": "^3.2.0",
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@faker-js/faker": "^10.4.0",
|
|
91
|
-
"@gadmin2n/prisma-nest-generator": "^0.0.
|
|
92
|
-
"@gadmin2n/prisma-react-generator": "^0.0.
|
|
91
|
+
"@gadmin2n/prisma-nest-generator": "^0.0.40",
|
|
92
|
+
"@gadmin2n/prisma-react-generator": "^0.0.56",
|
|
93
93
|
"@nestjs/testing": "^10.4.15",
|
|
94
94
|
"@types/cookie-parser": "^1.4.3",
|
|
95
95
|
"@types/express": "^4.17.21",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@dnd-kit/sortable": "^7.0.2",
|
|
12
12
|
"@dnd-kit/utilities": "^3.2.2",
|
|
13
13
|
"@gadmin2n/charts": "^0.0.7",
|
|
14
|
-
"@gadmin2n/react-common": "^0.0.
|
|
14
|
+
"@gadmin2n/react-common": "^0.0.66",
|
|
15
15
|
"@monaco-editor/react": "^4.7.0",
|
|
16
16
|
"@refinedev/antd": "^5.47.0",
|
|
17
17
|
"@refinedev/cli": "^2.16.51",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gadmin2n/schematics",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.77",
|
|
4
4
|
"description": "Gadmin - modern, fast, powerful node.js web framework (@schematics)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -10,11 +10,13 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"postbuild": "npm run copy:collection && npm run copy:lib",
|
|
13
|
+
"postbuild": "npm run copy:collection && npm run copy:lib && npm run scrub:dist",
|
|
14
14
|
"build": "rm -rf dist && tsc --project tsconfig.lib.json",
|
|
15
15
|
"clean": "gulp clean:src",
|
|
16
16
|
"copy:collection": "cpx src/collection.json dist && cpx 'src/lib/**/schema.json' dist/lib",
|
|
17
|
-
"copy:lib": "cpx 'src/lib/**/{files,workspace}/**/*' dist/lib && cpx 'src/lib/**/{files,workspace}/**/.!(gitignore)' dist/lib",
|
|
17
|
+
"copy:lib": "cpx 'src/lib/**/{files,workspace}/**/*' dist/lib && cpx 'src/lib/**/{files,workspace}/**/.!(gitignore|env.local|env.*.local)' dist/lib",
|
|
18
|
+
"scrub:dist": "find dist \\( -name '.env.local' -o -name '.env.*.local' \\) -type f -print -delete 2>/dev/null; true",
|
|
19
|
+
"prepublishOnly": "npm run scrub:dist",
|
|
18
20
|
"lint": "eslint '{src,test}/**/*.ts' --fix",
|
|
19
21
|
"prepublish:next": "npm run build",
|
|
20
22
|
"publish:next": "npm publish --access public --tag next",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
DATABASE_URL=postgresql://kavenma:kavenma@127.0.0.1:5432/gadmin_demo?schema=public
|