koatty_validation 1.6.3 → 1.6.6

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/.rollup.config.js CHANGED
@@ -29,9 +29,12 @@ export default [
29
29
  compilerOptions: {
30
30
  declaration: false,
31
31
  declarationMap: false,
32
- module: "ESNext"
32
+ module: "ESNext",
33
+ skipLibCheck: true
33
34
  }
34
- }
35
+ },
36
+ useTsconfigDeclarationDir: false,
37
+ check: false
35
38
  })
36
39
  ]
37
40
  },
@@ -54,9 +57,12 @@ export default [
54
57
  compilerOptions: {
55
58
  declaration: false,
56
59
  declarationMap: false,
57
- module: "ESNext"
60
+ module: "ESNext",
61
+ skipLibCheck: true
58
62
  }
59
- }
63
+ },
64
+ useTsconfigDeclarationDir: false,
65
+ check: false
60
66
  })
61
67
  ]
62
68
  }
@@ -1,120 +1,171 @@
1
-
2
- > koatty_validation@1.6.3 build /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation
3
- > npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp
4
-
5
-
6
- > koatty_validation@1.6.3 build:js
7
- > del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js
8
-
9
- 
10
- ./src/index.ts → ./dist/index.js...
11
- (!) Unresolved dependencies
12
- https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
13
- lru-cache (imported by "src/performance-cache.ts")
14
- reflect-metadata (imported by "src/util.ts")
15
- koatty_lib (imported by "src/util.ts", "src/rule.ts" and "src/decorators.ts")
16
- koatty_container (imported by "src/util.ts" and "src/decorators.ts")
17
- class-validator (imported by "src/rule.ts", "src/decorator-factory.ts" and "src/decorators.ts")
18
- created ./dist/index.js in 2s
19
- 
20
- ./src/index.ts → ./dist/index.mjs...
21
- (!) Unresolved dependencies
22
- https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
23
- lru-cache (imported by "src/performance-cache.ts")
24
- reflect-metadata (imported by "src/util.ts")
25
- koatty_lib (imported by "src/util.ts", "src/rule.ts" and "src/decorators.ts")
26
- koatty_container (imported by "src/util.ts" and "src/decorators.ts")
27
- class-validator (imported by "src/rule.ts", "src/decorator-factory.ts" and "src/decorators.ts")
28
- created ./dist/index.mjs in 1.1s
29
-
30
- > koatty_validation@1.6.3 build:dts
31
- > del-cli --force temp && npx tsc && npx api-extractor run --local --verbose
32
-
33
-
34
- api-extractor 7.55.2  - https://api-extractor.com/
35
- 
36
- Using configuration from ./api-extractor.json
37
- Analysis will use the bundled TypeScript version 5.8.2
38
- *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
39
- Writing: /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation/temp/koatty_validation.api.json
40
- Writing package typings: /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation/dist/index.d.ts
41
- Warning: src/error-handler.ts:185:6 - (tsdoc-undefined-tag) The TSDoc tag "@private" is not defined in this configuration
42
- Warning: src/performance-cache.ts:410:14 - (ae-forgotten-export) The symbol "MetadataCache" needs to be exported by the entry point index.d.ts
43
- Warning: src/performance-cache.ts:411:14 - (ae-forgotten-export) The symbol "ValidationCache" needs to be exported by the entry point index.d.ts
44
- Warning: src/performance-cache.ts:412:14 - (ae-forgotten-export) The symbol "RegexCache" needs to be exported by the entry point index.d.ts
45
- Warning: src/performance-cache.ts:413:14 - (ae-forgotten-export) The symbol "PerformanceMonitor" needs to be exported by the entry point index.d.ts
46
- Warning: src/rule.ts:28:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
47
- Warning: src/rule.ts:29:17 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
48
- Warning: src/rule.ts:29:10 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
49
- Warning: src/rule.ts:29:4 - (tsdoc-undefined-tag) The TSDoc tag "@enum" is not defined in this configuration
50
- Warning: src/rule.ts:54:6 - (tsdoc-undefined-tag) The TSDoc tag "@static" is not defined in this configuration
51
- Warning: src/rule.ts:56:6 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
52
- Warning: src/rule.ts:65:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
53
- Warning: src/rule.ts:66:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
54
- Warning: src/rule.ts:67:23 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
55
- Warning: src/rule.ts:67:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
56
- Warning: src/rule.ts:68:33 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
57
- Warning: src/rule.ts:68:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
58
- Warning: src/rule.ts:69:28 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
59
- Warning: src/rule.ts:69:15 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
60
- Warning: src/rule.ts:70:6 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
61
- Warning: src/rule.ts:111:14 - (ae-forgotten-export) The symbol "ValidateClass" needs to be exported by the entry point index.d.ts
62
- Warning: src/rule.ts:116:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
63
- Warning: src/rule.ts:117:17 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
64
- Warning: src/rule.ts:117:10 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
65
- Warning: src/rule.ts:117:4 - (tsdoc-undefined-tag) The TSDoc tag "@type" is not defined in this configuration
66
- Warning: src/rule.ts:152:64 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
67
- Warning: src/rule.ts:152:63 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
68
- Warning: src/rule.ts:339:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
69
- Warning: src/types.ts:58:6 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
70
- Warning: src/types.ts:64:6 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
71
- Warning: src/util.ts:144:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
72
- Warning: src/util.ts:145:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
73
- Warning: src/util.ts:146:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
74
- Warning: src/util.ts:147:21 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
75
- Warning: src/util.ts:147:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
76
- Warning: src/util.ts:226:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
77
- Warning: src/util.ts:227:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
78
- Warning: src/util.ts:228:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
79
- Warning: src/util.ts:228:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
80
- Warning: src/util.ts:252:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
81
- Warning: src/util.ts:253:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
82
- Warning: src/util.ts:254:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
83
- Warning: src/util.ts:254:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
84
- Warning: src/util.ts:323:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
85
- Warning: src/util.ts:324:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
86
- Warning: src/util.ts:325:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
87
- Warning: src/util.ts:325:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
88
-
89
- API Extractor completed successfully
90
-
91
- > koatty_validation@1.6.3 build:doc
92
- > del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api
93
-
94
-
95
- api-documenter 7.28.2  - https://api-extractor.com/
96
- 
97
- Reading koatty_validation.api.json
98
-
99
- Deleting old output from docs/api
100
- Writing koatty_validation package
101
- Unsupported block tag: @export
102
- Unsupported block tag: @export
103
- Unsupported block tag: @enum
104
- Unsupported block tag: @export
105
- Unsupported block tag: @default
106
- Unsupported block tag: @default
107
- Unsupported block tag: @default
108
- Unsupported block tag: @default
109
- Unsupported block tag: @export
110
- Unsupported block tag: @type
111
- Unsupported block tag: @export
112
- Unsupported block tag: @enum
113
- Unsupported block tag: @export
114
- Unsupported block tag: @export
115
- Unsupported block tag: @export
116
- Unsupported block tag: @type
117
-
118
- > koatty_validation@1.6.3 build:cp
119
- > node scripts/postBuild && copyfiles package.json LICENSE README.md dist/
120
-
1
+
2
+ 
3
+ > koatty_validation@1.6.6 build /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation
4
+ > npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp
5
+
6
+
7
+ > koatty_validation@1.6.6 build:js
8
+ > del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js
9
+
10
+ ⠙
11
+ ./src/index.ts ./dist/index.js...
12
+ (!) Unresolved dependencies
13
+ https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
14
+ lru-cache (imported by "src/performance-cache.ts")
15
+ reflect-metadata (imported by "src/util.ts")
16
+ koatty_lib (imported by "src/util.ts", "src/rule.ts" and "src/decorators.ts")
17
+ koatty_container (imported by "src/util.ts" and "src/decorators.ts")
18
+ class-validator (imported by "src/rule.ts", "src/decorator-factory.ts" and "src/decorators.ts")
19
+ created ./dist/index.js in 7.8s
20
+ 
21
+ ./src/index.ts ./dist/index.mjs...
22
+ (!) Unresolved dependencies
23
+ https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
24
+ lru-cache (imported by "src/performance-cache.ts")
25
+ reflect-metadata (imported by "src/util.ts")
26
+ koatty_lib (imported by "src/util.ts", "src/rule.ts" and "src/decorators.ts")
27
+ koatty_container (imported by "src/util.ts" and "src/decorators.ts")
28
+ class-validator (imported by "src/rule.ts", "src/decorator-factory.ts" and "src/decorators.ts")
29
+ created ./dist/index.mjs in 2.3s
30
+ ⠙⠙
31
+ > koatty_validation@1.6.6 build:dts
32
+ > bash ../../scripts/build-dts.sh
33
+
34
+ 🔨 Building type declarations for koatty-validation...
35
+ ⏳ Waiting for dependencies to be ready...
36
+
37
+ 🔍 Checking dependencies: koatty_container, koatty_lib, koatty_logger
38
+ Waiting for: koatty_container, koatty_lib, koatty_logger (0s)
39
+ ✗ koatty_container: not found
40
+ koatty_lib: not found
41
+ koatty_logger: not found
42
+ koatty_lib type declarations ready
43
+ Waiting for: koatty_container, koatty_logger (5s)
44
+ koatty_container: not found
45
+ koatty_logger: not found
46
+ Waiting for: koatty_container, koatty_logger (10s)
47
+ koatty_container: not found
48
+ koatty_logger: not found
49
+ Waiting for: koatty_container, koatty_logger (15s)
50
+ koatty_container: not found
51
+ koatty_logger: not found
52
+ Waiting for: koatty_container, koatty_logger (20s)
53
+ koatty_container: not found
54
+ koatty_logger: not found
55
+ Waiting for: koatty_container, koatty_logger (25s)
56
+ koatty_container: not found
57
+ koatty_logger: not found
58
+ Waiting for: koatty_container, koatty_logger (30s)
59
+ koatty_container: not found
60
+ koatty_logger: not found
61
+ Waiting for: koatty_container, koatty_logger (35s)
62
+ koatty_container: not found
63
+ koatty_logger: not found
64
+ Waiting for: koatty_container, koatty_logger (40s)
65
+ koatty_container: not found
66
+ koatty_logger: not found
67
+ Waiting for: koatty_container, koatty_logger (45s)
68
+ koatty_container: not found
69
+ koatty_logger: not found
70
+ Waiting for: koatty_container, koatty_logger (50s)
71
+ koatty_container: not found
72
+ koatty_logger: not found
73
+ Waiting for: koatty_container, koatty_logger (55s)
74
+ koatty_container: not found
75
+ koatty_logger: not found
76
+
77
+ ⚠️ Timeout waiting for dependencies: koatty_container, koatty_logger
78
+ Maximum wait time: 60000ms
79
+ Continuing build anyway - dependencies may be building in parallel
80
+ 📝 Running TypeScript compiler...
81
+ ⠙⠙📦 Running API Extractor...
82
+ ⠙⠹
83
+ api-extractor 7.55.2  - https://api-extractor.com/
84
+ 
85
+ Using configuration from ./api-extractor.json
86
+ Analysis will use the bundled TypeScript version 5.8.2
87
+ *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
88
+ Writing: /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation/temp/koatty_validation.api.json
89
+ Writing package typings: /Users/richen/Workspace/nodejs/koatty-monorepo/packages/koatty-validation/dist/index.d.ts
90
+ Warning: src/error-handler.ts:185:6 - (tsdoc-undefined-tag) The TSDoc tag "@private" is not defined in this configuration
91
+ Warning: src/performance-cache.ts:410:14 - (ae-forgotten-export) The symbol "MetadataCache" needs to be exported by the entry point index.d.ts
92
+ Warning: src/performance-cache.ts:411:14 - (ae-forgotten-export) The symbol "ValidationCache" needs to be exported by the entry point index.d.ts
93
+ Warning: src/performance-cache.ts:412:14 - (ae-forgotten-export) The symbol "RegexCache" needs to be exported by the entry point index.d.ts
94
+ Warning: src/performance-cache.ts:413:14 - (ae-forgotten-export) The symbol "PerformanceMonitor" needs to be exported by the entry point index.d.ts
95
+ Warning: src/rule.ts:28:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
96
+ Warning: src/rule.ts:29:17 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
97
+ Warning: src/rule.ts:29:10 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
98
+ Warning: src/rule.ts:29:4 - (tsdoc-undefined-tag) The TSDoc tag "@enum" is not defined in this configuration
99
+ Warning: src/rule.ts:54:6 - (tsdoc-undefined-tag) The TSDoc tag "@static" is not defined in this configuration
100
+ Warning: src/rule.ts:56:6 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
101
+ Warning: src/rule.ts:65:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
102
+ Warning: src/rule.ts:66:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
103
+ Warning: src/rule.ts:67:23 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
104
+ Warning: src/rule.ts:67:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
105
+ Warning: src/rule.ts:68:33 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
106
+ Warning: src/rule.ts:68:13 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
107
+ Warning: src/rule.ts:69:28 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
108
+ Warning: src/rule.ts:69:15 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
109
+ Warning: src/rule.ts:70:6 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
110
+ Warning: src/rule.ts:111:14 - (ae-forgotten-export) The symbol "ValidateClass" needs to be exported by the entry point index.d.ts
111
+ Warning: src/rule.ts:116:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
112
+ Warning: src/rule.ts:117:17 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
113
+ Warning: src/rule.ts:117:10 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
114
+ Warning: src/rule.ts:117:4 - (tsdoc-undefined-tag) The TSDoc tag "@type" is not defined in this configuration
115
+ Warning: src/rule.ts:152:64 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
116
+ Warning: src/rule.ts:152:63 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
117
+ Warning: src/rule.ts:339:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
118
+ Warning: src/types.ts:58:6 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
119
+ Warning: src/types.ts:64:6 - (tsdoc-undefined-tag) The TSDoc tag "@default" is not defined in this configuration
120
+ Warning: src/util.ts:144:4 - (tsdoc-undefined-tag) The TSDoc tag "@export" is not defined in this configuration
121
+ Warning: src/util.ts:145:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
122
+ Warning: src/util.ts:146:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
123
+ Warning: src/util.ts:147:21 - (tsdoc-param-tag-with-invalid-optional-name) The @param should not include a JSDoc-style optional name; it must not be enclosed in '[ ]' brackets.
124
+ Warning: src/util.ts:147:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
125
+ Warning: src/util.ts:226:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
126
+ Warning: src/util.ts:227:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
127
+ Warning: src/util.ts:228:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
128
+ Warning: src/util.ts:228:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
129
+ Warning: src/util.ts:252:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
130
+ Warning: src/util.ts:253:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
131
+ Warning: src/util.ts:254:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
132
+ Warning: src/util.ts:254:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
133
+ Warning: src/util.ts:323:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
134
+ Warning: src/util.ts:324:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
135
+ Warning: src/util.ts:325:15 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
136
+ Warning: src/util.ts:325:13 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
137
+
138
+ API Extractor completed successfully
139
+ ⠙✅ Type declarations built successfully
140
+ ⠙
141
+ > koatty_validation@1.6.6 build:doc
142
+ > del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api
143
+
144
+ ⠙
145
+ api-documenter 7.28.2  - https://api-extractor.com/
146
+ 
147
+ Reading koatty_validation.api.json
148
+
149
+ Deleting old output from docs/api
150
+ Writing koatty_validation package
151
+ Unsupported block tag: @export
152
+ Unsupported block tag: @export
153
+ Unsupported block tag: @enum
154
+ Unsupported block tag: @export
155
+ Unsupported block tag: @default
156
+ Unsupported block tag: @default
157
+ Unsupported block tag: @default
158
+ Unsupported block tag: @default
159
+ Unsupported block tag: @export
160
+ Unsupported block tag: @type
161
+ Unsupported block tag: @export
162
+ Unsupported block tag: @enum
163
+ Unsupported block tag: @export
164
+ Unsupported block tag: @export
165
+ Unsupported block tag: @export
166
+ Unsupported block tag: @type
167
+ ⠙⠙
168
+ > koatty_validation@1.6.6 build:cp
169
+ > node scripts/postBuild && copyfiles package.json LICENSE README.md dist/
170
+
171
+ ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.6
4
+
5
+ ### Patch Changes
6
+
7
+ - build
8
+ - Updated dependencies
9
+ - koatty_container@1.17.4
10
+ - koatty_lib@1.4.5
11
+ - koatty_logger@2.3.4
12
+
13
+ ## 1.6.5
14
+
15
+ ### Patch Changes
16
+
17
+ - build
18
+ - Updated dependencies
19
+ - koatty_container@1.17.3
20
+ - koatty_lib@1.4.4
21
+ - koatty_logger@2.3.3
22
+
23
+ ## 1.6.4
24
+
25
+ ### Patch Changes
26
+
27
+ - build
28
+ - Updated dependencies
29
+ - koatty_container@1.17.2
30
+ - koatty_lib@1.4.3
31
+ - koatty_logger@2.3.2
32
+
3
33
  ## 1.6.3
4
34
 
5
35
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2026-01-28 12:40:19
3
+ * @Date: 2026-01-28 17:22:16
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2026-01-28 12:40:10
3
+ * @Date: 2026-01-28 17:22:04
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2026-01-28 12:40:10
3
+ * @Date: 2026-01-28 17:22:04
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
package/dist/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "koatty_validation",
3
- "version": "1.6.3",
3
+ "version": "1.6.6",
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",
7
7
  "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
8
8
  "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
9
9
  "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
10
- "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
10
+ "build:dts": "bash ../../scripts/build-dts.sh",
11
11
  "eslint": "eslint --ext .ts,.js ./",
12
12
  "lock": "npm i --package-lock-only",
13
13
  "prepublishOnly": "npm test && npm run build && git push --follow-tags origin",
@@ -74,14 +74,14 @@
74
74
  },
75
75
  "dependencies": {
76
76
  "class-validator": "^0.14.3",
77
- "koatty_container": "workspace:*",
78
- "koatty_lib": "workspace:*",
79
- "koatty_logger": "workspace:*",
77
+ "koatty_container": "^1.17.4",
78
+ "koatty_lib": "^1.4.5",
79
+ "koatty_logger": "^2.3.4",
80
80
  "lru-cache": "^11.2.5"
81
81
  },
82
82
  "peerDependencies": {
83
- "koatty_container": "workspace:*",
84
- "koatty_lib": "workspace:*",
85
- "koatty_logger": "workspace:*"
83
+ "koatty_container": "^1.17.4",
84
+ "koatty_lib": "^1.4.5",
85
+ "koatty_logger": "^2.3.4"
86
86
  }
87
- }
87
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty_validation",
3
- "version": "1.6.3",
3
+ "version": "1.6.6",
4
4
  "description": "Validation Util for Koatty and ThinkORM.",
5
5
  "main": "./dist/index.js",
6
6
  "exports": {
@@ -62,22 +62,22 @@
62
62
  },
63
63
  "dependencies": {
64
64
  "class-validator": "^0.14.3",
65
- "lru-cache": "^11.2.5",
66
- "koatty_container": "1.18.0",
67
- "koatty_lib": "1.4.3",
68
- "koatty_logger": "2.8.1"
65
+ "koatty_container": "^1.17.4",
66
+ "koatty_lib": "^1.4.5",
67
+ "koatty_logger": "^2.3.4",
68
+ "lru-cache": "^11.2.5"
69
69
  },
70
70
  "peerDependencies": {
71
- "koatty_container": "1.18.0",
72
- "koatty_lib": "1.4.3",
73
- "koatty_logger": "2.8.1"
71
+ "koatty_container": "^1.17.4",
72
+ "koatty_lib": "^1.4.5",
73
+ "koatty_logger": "^2.3.4"
74
74
  },
75
75
  "scripts": {
76
76
  "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
77
77
  "build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
78
78
  "build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
79
79
  "build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
80
- "build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
80
+ "build:dts": "bash ../../scripts/build-dts.sh",
81
81
  "eslint": "eslint --ext .ts,.js ./",
82
82
  "lock": "npm i --package-lock-only",
83
83
  "prerelease": "npm test && npm run build",