koatty_validation 1.4.0 → 1.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty_validation",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "description": "Validation Util for Koatty and ThinkORM.",
5
5
  "scripts": {
6
6
  "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
@@ -81,7 +81,7 @@
81
81
  "koatty_container": "^1.x.x",
82
82
  "koatty_lib": "^1.x.x",
83
83
  "koatty_logger": "^2.x.x",
84
- "lru-cache": "^11.1.0"
84
+ "lru-cache": "^11.2.2"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "koatty_container": "^1.x.x",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty_validation",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "description": "Validation Util for Koatty and ThinkORM.",
5
5
  "scripts": {
6
6
  "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
@@ -81,7 +81,7 @@
81
81
  "koatty_container": "^1.x.x",
82
82
  "koatty_lib": "^1.x.x",
83
83
  "koatty_logger": "^2.x.x",
84
- "lru-cache": "^11.1.0"
84
+ "lru-cache": "^11.2.2"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "koatty_container": "^1.x.x",
@@ -1,81 +0,0 @@
1
- {
2
- "configurations": [
3
- {
4
- "name": "Launch Koatty Project",
5
- "type": "node",
6
- "request": "launch",
7
- "args": [
8
- "${workspaceRoot}/src/App.ts"
9
- ],
10
- "runtimeArgs": [
11
- "--nolazy",
12
- "-r",
13
- "ts-node/register"
14
- ],
15
- "envFile": "/Users/richen/Workspace/.env",
16
- "sourceMaps": true,
17
- "cwd": "${workspaceRoot}",
18
- "protocol": "inspector",
19
- "internalConsoleOptions": "neverOpen"
20
- },
21
- {
22
- "name": "Launch GoPackage",
23
- "type": "go",
24
- "request": "launch",
25
- "mode": "auto",
26
- "program": "${workspaceFolder}/main.go",
27
- "envFile": "/Users/richen/Workspace/.env",
28
- "args": []
29
- },
30
- {
31
- "name": "Launch Java Project",
32
- "type": "java",
33
- "request": "launch",
34
- "mainClass": "",
35
- "envFile": "/Users/richen/Workspace/.env"
36
- },
37
- {
38
- "name": "Launch Node.js Project",
39
- "type": "node",
40
- "request": "launch",
41
- "mode": "auto",
42
- "program": "${workspaceFolder}/app.js",
43
- "envFile": "/Users/richen/Workspace/.env",
44
- "args": []
45
- },
46
- {
47
- "name": "Launch Typescript Project",
48
- "type": "node",
49
- "request": "launch",
50
- "args": [
51
- "${workspaceRoot}/src/index.ts"
52
- ],
53
- "runtimeArgs": [
54
- "--nolazy",
55
- "-r",
56
- "ts-node/register"
57
- ],
58
- "envFile": "/Users/richen/Workspace/.env",
59
- "sourceMaps": true,
60
- "cwd": "${workspaceRoot}",
61
- "protocol": "inspector",
62
- "internalConsoleOptions": "neverOpen"
63
- },
64
- {
65
- "type": "node",
66
- "name": "vscode-jest-tests",
67
- "request": "launch",
68
- "console": "integratedTerminal",
69
- "internalConsoleOptions": "neverOpen",
70
- "disableOptimisticBPs": true,
71
- "program": "${workspaceFolder}/node_modules/.bin/jest",
72
- "cwd": "${workspaceFolder}",
73
- "args": [
74
- "--config",
75
- "jest.config.js",
76
- "--runInBand",
77
- "--watchAll=false"
78
- ]
79
- }
80
- ]
81
- }