@visulima/jsdoc-open-api 2.0.4 → 2.0.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/CHANGELOG.md +20 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## @visulima/jsdoc-open-api [2.0.6](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.5...@visulima/jsdoc-open-api@2.0.6) (2023-10-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated deps ([4eedb60](https://github.com/visulima/visulima/commit/4eedb604c4f78cf331195e2c053dc72e1c6cf9ad))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/readdir:** upgraded to 2.0.5
|
|
13
|
+
|
|
14
|
+
## @visulima/jsdoc-open-api [2.0.5](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.4...@visulima/jsdoc-open-api@2.0.5) (2023-10-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* updated all deps ([a8aa029](https://github.com/visulima/visulima/commit/a8aa0295118a4d5248844e89a95ea332f65434cb))
|
|
20
|
+
|
|
1
21
|
## @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
22
|
|
|
3
23
|
|
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.6",
|
|
4
4
|
"description": "Generates swagger doc based on JSDoc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -89,12 +89,12 @@
|
|
|
89
89
|
"scripts": {
|
|
90
90
|
"build": "cross-env NODE_ENV=development tsup",
|
|
91
91
|
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
92
|
-
"check:packagejson": "publint --strict",
|
|
93
92
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
94
93
|
"coverage": "vitest run --coverage",
|
|
95
94
|
"dev": "pnpm run build --watch",
|
|
96
95
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
97
|
-
"lint:eslint:fix": "
|
|
96
|
+
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
97
|
+
"lint:packagejson": "publint --strict",
|
|
98
98
|
"lint:prettier": "prettier --config=.prettierrc.js --check .",
|
|
99
99
|
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
100
100
|
"lint:types": "tsc --noEmit",
|
|
@@ -103,11 +103,11 @@
|
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
106
|
-
"@visulima/readdir": "2.0.
|
|
106
|
+
"@visulima/readdir": "2.0.5",
|
|
107
107
|
"comment-parser": "^1.4.0",
|
|
108
108
|
"lodash.mergewith": "^4.6.2",
|
|
109
109
|
"read-pkg-up": "^7.0.1",
|
|
110
|
-
"yaml": "^2.3.
|
|
110
|
+
"yaml": "^2.3.3"
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
113
|
"@anolilab/eslint-config": "^14.0.24",
|
|
@@ -115,21 +115,21 @@
|
|
|
115
115
|
"@anolilab/semantic-release-preset": "^8.0.0",
|
|
116
116
|
"@babel/core": "^7.23.2",
|
|
117
117
|
"@rushstack/eslint-plugin-security": "^0.7.1",
|
|
118
|
-
"@types/cli-progress": "^3.11.
|
|
119
|
-
"@types/http-errors": "^2.0.
|
|
120
|
-
"@types/lodash.mergewith": "^4.6.
|
|
121
|
-
"@types/node": "18.
|
|
122
|
-
"@types/webpack": "^5.28.
|
|
118
|
+
"@types/cli-progress": "^3.11.4",
|
|
119
|
+
"@types/http-errors": "^2.0.3",
|
|
120
|
+
"@types/lodash.mergewith": "^4.6.8",
|
|
121
|
+
"@types/node": "18.18.5",
|
|
122
|
+
"@types/webpack": "^5.28.4",
|
|
123
123
|
"@vitest/coverage-v8": "^0.34.6",
|
|
124
124
|
"cli-progress": "^3.12.0",
|
|
125
125
|
"commander": "^11.1.0",
|
|
126
126
|
"cross-env": "^7.0.3",
|
|
127
|
-
"eslint": "^8.
|
|
127
|
+
"eslint": "^8.52.0",
|
|
128
128
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
129
129
|
"eslint-plugin-etc": "^2.0.3",
|
|
130
130
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.28.1",
|
|
131
131
|
"eslint-plugin-mdx": "^2.2.0",
|
|
132
|
-
"eslint-plugin-vitest": "^0.3.
|
|
132
|
+
"eslint-plugin-vitest": "^0.3.8",
|
|
133
133
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
134
134
|
"openapi-types": "^12.1.3",
|
|
135
135
|
"prettier": "^3.0.3",
|
|
@@ -139,12 +139,12 @@
|
|
|
139
139
|
"tsup": "^7.2.0",
|
|
140
140
|
"typescript": "^5.2.2",
|
|
141
141
|
"vitest": "^0.34.6",
|
|
142
|
-
"webpack": "^5.
|
|
142
|
+
"webpack": "^5.89.0"
|
|
143
143
|
},
|
|
144
144
|
"optionalDependencies": {
|
|
145
145
|
"cli-progress": "^3.12.0",
|
|
146
146
|
"commander": "^11.1.0",
|
|
147
|
-
"webpack": "^5.
|
|
147
|
+
"webpack": "^5.89.0"
|
|
148
148
|
},
|
|
149
149
|
"engines": {
|
|
150
150
|
"node": ">=18.* <=20.*"
|