@visulima/jsdoc-open-api 2.0.3 → 2.0.4
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/CHANGELOG.md +13 -0
- package/package.json +6 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## @visulima/jsdoc-open-api [2.0.4](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.3...@visulima/jsdoc-open-api@2.0.4) (2023-10-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* removed types from exports key ([80bd356](https://github.com/visulima/visulima/commit/80bd356659a45bd351a60870b0f380569c75e0c1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/readdir:** upgraded to 2.0.4
|
|
13
|
+
|
|
1
14
|
## @visulima/jsdoc-open-api [2.0.3](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.2...@visulima/jsdoc-open-api@2.0.3) (2023-10-11)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/jsdoc-open-api",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Generates swagger doc based on JSDoc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"sideEffects": false,
|
|
42
42
|
"exports": {
|
|
43
43
|
".": {
|
|
44
|
-
"types": "./dist/index.d.ts",
|
|
45
44
|
"require": {
|
|
46
45
|
"types": "./dist/index.d.ts",
|
|
47
46
|
"default": "./dist/index.js"
|
|
@@ -52,7 +51,6 @@
|
|
|
52
51
|
}
|
|
53
52
|
},
|
|
54
53
|
"./cli": {
|
|
55
|
-
"types": "./dist/cli/index.d.ts",
|
|
56
54
|
"require": {
|
|
57
55
|
"types": "./dist/cli/index.d.ts",
|
|
58
56
|
"default": "./dist/cli/index.js"
|
|
@@ -63,7 +61,6 @@
|
|
|
63
61
|
}
|
|
64
62
|
},
|
|
65
63
|
"./cli/commander": {
|
|
66
|
-
"types": "./dist/cli/commander/index.d.ts",
|
|
67
64
|
"require": {
|
|
68
65
|
"types": "./dist/cli/commander/index.d.ts",
|
|
69
66
|
"default": "./dist/cli/commander/index.js"
|
|
@@ -92,6 +89,7 @@
|
|
|
92
89
|
"scripts": {
|
|
93
90
|
"build": "cross-env NODE_ENV=development tsup",
|
|
94
91
|
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
92
|
+
"check:packagejson": "publint --strict",
|
|
95
93
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
96
94
|
"coverage": "vitest run --coverage",
|
|
97
95
|
"dev": "pnpm run build --watch",
|
|
@@ -105,7 +103,7 @@
|
|
|
105
103
|
},
|
|
106
104
|
"dependencies": {
|
|
107
105
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
108
|
-
"@visulima/readdir": "2.0.
|
|
106
|
+
"@visulima/readdir": "2.0.4",
|
|
109
107
|
"comment-parser": "^1.4.0",
|
|
110
108
|
"lodash.mergewith": "^4.6.2",
|
|
111
109
|
"read-pkg-up": "^7.0.1",
|
|
@@ -115,7 +113,7 @@
|
|
|
115
113
|
"@anolilab/eslint-config": "^14.0.24",
|
|
116
114
|
"@anolilab/prettier-config": "^5.0.11",
|
|
117
115
|
"@anolilab/semantic-release-preset": "^8.0.0",
|
|
118
|
-
"@babel/core": "^7.23.
|
|
116
|
+
"@babel/core": "^7.23.2",
|
|
119
117
|
"@rushstack/eslint-plugin-security": "^0.7.1",
|
|
120
118
|
"@types/cli-progress": "^3.11.3",
|
|
121
119
|
"@types/http-errors": "^2.0.2",
|
|
@@ -124,7 +122,7 @@
|
|
|
124
122
|
"@types/webpack": "^5.28.3",
|
|
125
123
|
"@vitest/coverage-v8": "^0.34.6",
|
|
126
124
|
"cli-progress": "^3.12.0",
|
|
127
|
-
"commander": "^11.
|
|
125
|
+
"commander": "^11.1.0",
|
|
128
126
|
"cross-env": "^7.0.3",
|
|
129
127
|
"eslint": "^8.51.0",
|
|
130
128
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
@@ -145,7 +143,7 @@
|
|
|
145
143
|
},
|
|
146
144
|
"optionalDependencies": {
|
|
147
145
|
"cli-progress": "^3.12.0",
|
|
148
|
-
"commander": "^11.
|
|
146
|
+
"commander": "^11.1.0",
|
|
149
147
|
"webpack": "^5.88.2"
|
|
150
148
|
},
|
|
151
149
|
"engines": {
|