@visulima/jsdoc-open-api 2.0.11 → 2.0.13
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +27 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## @visulima/jsdoc-open-api [2.0.13](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.12...@visulima/jsdoc-open-api@2.0.13) (2024-02-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update yaml to 2.4.0 ([42961b9](https://github.com/visulima/visulima/commit/42961b98dd7e8c177525c9c92d27ce59301957d2))
|
|
7
|
+
|
|
8
|
+
## @visulima/jsdoc-open-api [2.0.12](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.11...@visulima/jsdoc-open-api@2.0.12) (2024-01-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* updated all deps, updated test based on eslint errors ([909f8f3](https://github.com/visulima/visulima/commit/909f8f384804d7ef140354ab44f867532dbc9847))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* **@visulima/readdir:** upgraded to 2.0.11
|
|
20
|
+
|
|
1
21
|
## @visulima/jsdoc-open-api [2.0.11](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.10...@visulima/jsdoc-open-api@2.0.11) (2023-11-30)
|
|
2
22
|
|
|
3
23
|
|
package/dist/index.d.mts
CHANGED
|
@@ -288,4 +288,4 @@ declare class SwaggerCompilerPlugin {
|
|
|
288
288
|
apply(compiler: Compiler): void;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
export { BaseDefinition, OpenApiObject, SpecBuilder, SwaggerCompilerPlugin, commentsToOpenApi$1 as jsDocumentCommentsToOpenApi, parseFile, commentsToOpenApi as swaggerJsDocumentCommentsToOpenApi, yamlLoc };
|
|
291
|
+
export { type BaseDefinition, type OpenApiObject, SpecBuilder, SwaggerCompilerPlugin, commentsToOpenApi$1 as jsDocumentCommentsToOpenApi, parseFile, commentsToOpenApi as swaggerJsDocumentCommentsToOpenApi, yamlLoc };
|
package/dist/index.d.ts
CHANGED
|
@@ -288,4 +288,4 @@ declare class SwaggerCompilerPlugin {
|
|
|
288
288
|
apply(compiler: Compiler): void;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
export { BaseDefinition, OpenApiObject, SpecBuilder, SwaggerCompilerPlugin, commentsToOpenApi$1 as jsDocumentCommentsToOpenApi, parseFile, commentsToOpenApi as swaggerJsDocumentCommentsToOpenApi, yamlLoc };
|
|
291
|
+
export { type BaseDefinition, type OpenApiObject, SpecBuilder, SwaggerCompilerPlugin, commentsToOpenApi$1 as jsDocumentCommentsToOpenApi, parseFile, commentsToOpenApi as swaggerJsDocumentCommentsToOpenApi, yamlLoc };
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as d$1,
|
|
1
|
+
import { d as d$1, a, c, e, f } from './chunk-RMC27EXI.mjs';
|
|
2
2
|
export { d as SpecBuilder, a as jsDocumentCommentsToOpenApi, c as parseFile, e as swaggerJsDocumentCommentsToOpenApi, b as yamlLoc } from './chunk-RMC27EXI.mjs';
|
|
3
3
|
import { mkdir, writeFile } from 'fs';
|
|
4
4
|
import { dirname } from 'path';
|
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.13",
|
|
4
4
|
"description": "Generates swagger doc based on JSDoc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"visulima",
|
|
@@ -90,7 +90,6 @@
|
|
|
90
90
|
"build": "cross-env NODE_ENV=development tsup",
|
|
91
91
|
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
92
92
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
93
|
-
"coverage": "vitest run --coverage",
|
|
94
93
|
"dev": "pnpm run build --watch",
|
|
95
94
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
96
95
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
@@ -99,52 +98,55 @@
|
|
|
99
98
|
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
100
99
|
"lint:types": "tsc --noEmit",
|
|
101
100
|
"test": "vitest run",
|
|
101
|
+
"test:coverage": "vitest run --coverage",
|
|
102
|
+
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
102
103
|
"test:watch": "vitest"
|
|
103
104
|
},
|
|
104
105
|
"dependencies": {
|
|
105
106
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
106
|
-
"@visulima/readdir": "2.0.
|
|
107
|
+
"@visulima/readdir": "2.0.11",
|
|
107
108
|
"comment-parser": "^1.4.1",
|
|
108
109
|
"lodash.mergewith": "^4.6.2",
|
|
109
110
|
"read-pkg-up": "^7.0.1",
|
|
110
|
-
"yaml": "^2.
|
|
111
|
+
"yaml": "^2.4.0"
|
|
111
112
|
},
|
|
112
113
|
"devDependencies": {
|
|
113
|
-
"@anolilab/eslint-config": "^15.0.
|
|
114
|
-
"@anolilab/prettier-config": "^5.0.
|
|
115
|
-
"@anolilab/semantic-release-preset": "^8.0.
|
|
116
|
-
"@babel/core": "^7.23.
|
|
117
|
-
"@rushstack/eslint-plugin-security": "^0.
|
|
114
|
+
"@anolilab/eslint-config": "^15.0.3",
|
|
115
|
+
"@anolilab/prettier-config": "^5.0.14",
|
|
116
|
+
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
117
|
+
"@babel/core": "^7.23.9",
|
|
118
|
+
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
118
119
|
"@types/cli-progress": "^3.11.5",
|
|
119
120
|
"@types/http-errors": "^2.0.4",
|
|
120
121
|
"@types/lodash.mergewith": "^4.6.9",
|
|
121
|
-
"@types/node": "18.18.
|
|
122
|
+
"@types/node": "18.18.14",
|
|
122
123
|
"@types/webpack": "^5.28.5",
|
|
123
|
-
"@vitest/coverage-v8": "^
|
|
124
|
+
"@vitest/coverage-v8": "^1.3.1",
|
|
125
|
+
"@vitest/ui": "^1.3.1",
|
|
124
126
|
"cli-progress": "^3.12.0",
|
|
125
|
-
"commander": "^
|
|
127
|
+
"commander": "^12.0.0",
|
|
126
128
|
"cross-env": "^7.0.3",
|
|
127
|
-
"eslint": "^8.
|
|
129
|
+
"eslint": "^8.57.0",
|
|
128
130
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
129
131
|
"eslint-plugin-etc": "^2.0.3",
|
|
130
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.
|
|
131
|
-
"eslint-plugin-mdx": "^
|
|
132
|
-
"eslint-plugin-vitest": "^0.3.
|
|
132
|
+
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
133
|
+
"eslint-plugin-mdx": "^3.1.5",
|
|
134
|
+
"eslint-plugin-vitest": "^0.3.22",
|
|
133
135
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
134
136
|
"openapi-types": "^12.1.3",
|
|
135
|
-
"prettier": "^3.
|
|
137
|
+
"prettier": "^3.2.5",
|
|
136
138
|
"rimraf": "^5.0.5",
|
|
137
|
-
"semantic-release": "^
|
|
138
|
-
"sort-package-json": "^2.
|
|
139
|
-
"tsup": "^8.0.
|
|
140
|
-
"typescript": "^5.3.
|
|
141
|
-
"vitest": "^
|
|
142
|
-
"webpack": "^5.
|
|
139
|
+
"semantic-release": "^23.0.2",
|
|
140
|
+
"sort-package-json": "^2.8.0",
|
|
141
|
+
"tsup": "^8.0.2",
|
|
142
|
+
"typescript": "^5.3.3",
|
|
143
|
+
"vitest": "^1.3.1",
|
|
144
|
+
"webpack": "^5.90.3"
|
|
143
145
|
},
|
|
144
146
|
"optionalDependencies": {
|
|
145
147
|
"cli-progress": "^3.12.0",
|
|
146
|
-
"commander": "^
|
|
147
|
-
"webpack": "^5.
|
|
148
|
+
"commander": "^12.0.0",
|
|
149
|
+
"webpack": "^5.90.3"
|
|
148
150
|
},
|
|
149
151
|
"engines": {
|
|
150
152
|
"node": ">=18.* <=21.*"
|