@nestia/core 3.2.3 → 3.2.5
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 +7 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -18,6 +18,9 @@ Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
|
18
18
|
- SDK library generator for clients
|
|
19
19
|
- Mockup Simulator for client applications
|
|
20
20
|
- Automatic E2E test functions generator
|
|
21
|
+
- `@nestia/e2e`
|
|
22
|
+
- Test program utilizng e2e test functions
|
|
23
|
+
- Benchmark program using e2e test functions
|
|
21
24
|
- `@nestia/migrate`: OpenAPI generator from Swagger to NestJS/SDK
|
|
22
25
|
- `@nestia/editor`: Swagger-UI with Online TypeScript Editor
|
|
23
26
|
- `nestia`: Just CLI (command line interface) tool
|
|
@@ -72,6 +75,10 @@ Check out the document in the [website](https://nestia.io/docs/):
|
|
|
72
75
|
- [Software Development Kit](https://nestia.io/docs/sdk/sdk/)
|
|
73
76
|
- [E2E Functions](https://nestia.io/docs/sdk/e2e/)
|
|
74
77
|
- [Mockup Simulator](https://nestia.io/docs/sdk/simulator/)
|
|
78
|
+
- E2E Testing
|
|
79
|
+
- [Why E2E Test?](https://nestia.io/docs/e2e/why/)
|
|
80
|
+
- [Test Program Development](https://nestia.io/docs/e2e/development/)
|
|
81
|
+
- [Performance Benchmark](https://nestia.io/docs/e2e/benchmark/)
|
|
75
82
|
- [Swagger to NestJS](https://nestia.io/docs/migrate/)
|
|
76
83
|
- [TypeScript Swagger Editor](https://nestia.io/docs/editor/)
|
|
77
84
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestia/core",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"description": "Super-fast validation decorators of NestJS",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://nestia.io",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nestia/fetcher": "^3.2.
|
|
39
|
+
"@nestia/fetcher": "^3.2.5",
|
|
40
40
|
"@nestjs/common": ">=7.0.1",
|
|
41
41
|
"@nestjs/core": ">=7.0.1",
|
|
42
42
|
"@samchon/openapi": "^0.1.21",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"ws": "^7.5.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@nestia/fetcher": ">=3.2.
|
|
56
|
+
"@nestia/fetcher": ">=3.2.5",
|
|
57
57
|
"@nestjs/common": ">=7.0.1",
|
|
58
58
|
"@nestjs/core": ">=7.0.1",
|
|
59
59
|
"reflect-metadata": ">=0.1.12",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"inquirer": "^8.2.5",
|
|
81
81
|
"rimraf": "^3.0.2",
|
|
82
82
|
"ts-node": "^10.9.1",
|
|
83
|
-
"ts-patch": "^3.
|
|
83
|
+
"ts-patch": "^3.2.0",
|
|
84
84
|
"tstl": "^3.0.0",
|
|
85
|
-
"typescript": "
|
|
85
|
+
"typescript": "5.4.5",
|
|
86
86
|
"typescript-transform-paths": "^3.4.6"
|
|
87
87
|
},
|
|
88
88
|
"files": [
|