Skip to content

Commit c773c53

Browse files
committed
🧹 chore: bump version
1 parent c92aa0f commit c773c53

File tree

3 files changed

+58
-54
lines changed

3 files changed

+58
-54
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.7.5
2+
Improvement:
3+
- #[59](https://github.com/elysiajs/elysia-swagger/pull/59) use relative path to swagger json #59
4+
15
# 0.7.4 - 27 Oct 2023
26
Improvement:
37
- [#24](https://github.com/elysiajs/elysia-swagger/pull/24) - adding schema validity test

bun.lockb

-311 Bytes
Binary file not shown.

package.json

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
{
2-
"name": "@elysiajs/swagger",
3-
"version": "0.7.4",
4-
"description": "Plugin for Elysia to auto-generate Swagger page",
5-
"author": {
6-
"name": "saltyAom",
7-
"url": "https://github.com/SaltyAom",
8-
"email": "saltyaom@gmail.com"
9-
},
10-
"main": "./dist/index.js",
11-
"exports": {
12-
"bun": "./dist/index.js",
13-
"node": "./dist/cjs/index.js",
14-
"require": "./dist/cjs/index.js",
15-
"import": "./dist/index.js",
16-
"default": "./dist/index.js"
17-
},
18-
"types": "./dist/index.d.ts",
19-
"keywords": [
20-
"elysia",
21-
"swagger"
22-
],
23-
"homepage": "https://github.com/elysiajs/elysia-swagger",
24-
"repository": {
25-
"type": "git",
26-
"url": "https://github.com/elysiajs/elysia-swagger"
27-
},
28-
"bugs": "https://github.com/elysiajs/elysia-swagger/issues",
29-
"license": "MIT",
30-
"scripts": {
31-
"dev": "bun run --watch example/index.ts",
32-
"test": "bun test && npm run test:node",
33-
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
34-
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
35-
"release": "npm run build && npm run test && npm publish --access public"
36-
},
37-
"peerDependencies": {
38-
"elysia": ">= 0.7.0"
39-
},
40-
"devDependencies": {
41-
"@apidevtools/swagger-parser": "^10.1.0",
42-
"@types/node": "^20.1.4",
43-
"bun-types": "^0.7.0",
44-
"elysia": "0.7.10",
45-
"eslint": "^8.40.0",
46-
"rimraf": "4.3",
47-
"typescript": "^5.0.4"
48-
},
49-
"dependencies": {
50-
"@types/lodash.clonedeep": "^4.5.7",
51-
"@types/swagger-ui": "^3.52.2",
52-
"lodash.clonedeep": "^4.5.0",
53-
"openapi-types": "^12.1.3"
54-
}
55-
}
2+
"name": "@elysiajs/swagger",
3+
"version": "0.8.0-rc.0",
4+
"description": "Plugin for Elysia to auto-generate Swagger page",
5+
"author": {
6+
"name": "saltyAom",
7+
"url": "https://github.com/SaltyAom",
8+
"email": "saltyaom@gmail.com"
9+
},
10+
"main": "./dist/index.js",
11+
"exports": {
12+
"bun": "./dist/index.js",
13+
"node": "./dist/cjs/index.js",
14+
"require": "./dist/cjs/index.js",
15+
"import": "./dist/index.js",
16+
"default": "./dist/index.js"
17+
},
18+
"types": "./dist/index.d.ts",
19+
"keywords": [
20+
"elysia",
21+
"swagger"
22+
],
23+
"homepage": "https://github.com/elysiajs/elysia-swagger",
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/elysiajs/elysia-swagger"
27+
},
28+
"bugs": "https://github.com/elysiajs/elysia-swagger/issues",
29+
"license": "MIT",
30+
"scripts": {
31+
"dev": "bun run --watch example/index.ts",
32+
"test": "bun test && npm run test:node",
33+
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
34+
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
35+
"release": "npm run build && npm run test && npm publish --access public"
36+
},
37+
"peerDependencies": {
38+
"elysia": ">= 0.8.0-rc.0"
39+
},
40+
"devDependencies": {
41+
"@apidevtools/swagger-parser": "^10.1.0",
42+
"@types/node": "^20.1.4",
43+
"bun-types": "^0.7.0",
44+
"elysia": "0.8.0-rc.0",
45+
"eslint": "^8.40.0",
46+
"rimraf": "4.3",
47+
"typescript": "^5.0.4"
48+
},
49+
"dependencies": {
50+
"@types/lodash.clonedeep": "^4.5.7",
51+
"@types/swagger-ui": "^3.52.2",
52+
"lodash.clonedeep": "^4.5.0",
53+
"openapi-types": "^12.1.3"
54+
}
55+
}

0 commit comments

Comments
 (0)