@visulima/jsdoc-open-api 2.0.61 → 2.0.62

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## @visulima/jsdoc-open-api [2.0.62](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.61...@visulima/jsdoc-open-api@2.0.62) (2024-10-05)
2
+
3
+ ### Bug Fixes
4
+
5
+ * updated dev dependencies, updated packem to v1.0.7, fixed naming of some lint config files ([c071a9c](https://github.com/visulima/visulima/commit/c071a9c8e129014a962ff654a16f302ca18a5c67))
6
+
7
+
8
+ ### Dependencies
9
+
10
+ * **@visulima/fs:** upgraded to 2.2.1
11
+
1
12
  ## @visulima/jsdoc-open-api [2.0.61](https://github.com/visulima/visulima/compare/@visulima/jsdoc-open-api@2.0.60...@visulima/jsdoc-open-api@2.0.61) (2024-09-29)
2
13
 
3
14
  ### Miscellaneous Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/jsdoc-open-api",
3
- "version": "2.0.61",
3
+ "version": "2.0.62",
4
4
  "description": "Generates swagger doc based on JSDoc.",
5
5
  "keywords": [
6
6
  "visulima",
@@ -88,7 +88,7 @@
88
88
  ],
89
89
  "dependencies": {
90
90
  "@apidevtools/swagger-parser": "^10.1.0",
91
- "@visulima/fs": "2.2.0",
91
+ "@visulima/fs": "2.2.1",
92
92
  "comment-parser": "^1.4.1",
93
93
  "lodash.mergewith": "^4.6.2",
94
94
  "read-pkg-up": "^7.0.1",
@@ -99,15 +99,15 @@
99
99
  "@anolilab/prettier-config": "^5.0.14",
100
100
  "@anolilab/semantic-release-pnpm": "^1.1.3",
101
101
  "@anolilab/semantic-release-preset": "^9.0.0",
102
- "@babel/core": "^7.25.2",
102
+ "@babel/core": "^7.25.7",
103
103
  "@rushstack/eslint-plugin-security": "^0.8.3",
104
104
  "@types/cli-progress": "^3.11.6",
105
105
  "@types/http-errors": "^2.0.4",
106
106
  "@types/lodash.mergewith": "^4.6.9",
107
107
  "@types/node": "18.19.15",
108
108
  "@types/webpack": "^5.28.5",
109
- "@vitest/coverage-v8": "^2.1.1",
110
- "@vitest/ui": "^2.1.1",
109
+ "@vitest/coverage-v8": "^2.1.2",
110
+ "@vitest/ui": "^2.1.2",
111
111
  "cli-progress": "^3.12.0",
112
112
  "commander": "^12.1.0",
113
113
  "conventional-changelog-conventionalcommits": "8.0.0",
@@ -125,7 +125,7 @@
125
125
  "semantic-release": "24.0.0",
126
126
  "tsup": "^8.3.0",
127
127
  "typescript": "5.4.5",
128
- "vitest": "^2.1.1",
128
+ "vitest": "^2.1.2",
129
129
  "webpack": "^5.95.0"
130
130
  },
131
131
  "optionalDependencies": {
@@ -167,11 +167,11 @@
167
167
  "build:prod": "cross-env NODE_ENV=production tsup",
168
168
  "clean": "rimraf node_modules dist .eslintcache",
169
169
  "dev": "pnpm run build --watch",
170
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
171
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
170
+ "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
171
+ "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
172
172
  "lint:package-json": "publint --strict",
173
- "lint:prettier": "prettier --config=.prettierrc.js --check .",
174
- "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
173
+ "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
174
+ "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
175
175
  "lint:types": "tsc --noEmit",
176
176
  "test": "vitest run",
177
177
  "test:coverage": "vitest run --coverage",