@visulima/jsdoc-open-api 2.0.4 → 2.0.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/CHANGELOG.md +7 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated all deps ([a8aa029](https://github.com/visulima/visulima/commit/a8aa0295118a4d5248844e89a95ea332f65434cb))
|
|
7
|
+
|
|
1
8
|
## @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
9
|
|
|
3
10
|
|
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.5",
|
|
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
96
|
"lint:eslint:fix": "pnpm run lint:eslint --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",
|
|
@@ -107,7 +107,7 @@
|
|
|
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",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"@types/cli-progress": "^3.11.3",
|
|
119
119
|
"@types/http-errors": "^2.0.2",
|
|
120
120
|
"@types/lodash.mergewith": "^4.6.7",
|
|
121
|
-
"@types/node": "18.
|
|
121
|
+
"@types/node": "18.18.5",
|
|
122
122
|
"@types/webpack": "^5.28.3",
|
|
123
123
|
"@vitest/coverage-v8": "^0.34.6",
|
|
124
124
|
"cli-progress": "^3.12.0",
|
|
@@ -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.*"
|