File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ # 0.6.2 - 11 Sep 2023
2
+ - Ship lodash.cloneDeep type
3
+
4
+ # 0.6.1 - 17 Aug 2023
5
+ - Add support for user provided components
1
6
2
7
# 0.6.0 - 6 Aug 2023
3
8
- Add support for Elysia 0.6
4
9
5
-
6
10
# 0.6.0-rc.0 - 6 Aug 2023
7
11
- Add support for Elysia 0.6
8
12
# 0.5.0 - 15 May 2023
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { swagger } from '../src/index'
3
3
import { plugin } from './plugin'
4
4
5
5
const app = new Elysia ( {
6
- aot : false
6
+ // aot: false
7
7
} )
8
8
. use (
9
9
swagger ( {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @elysiajs/swagger" ,
3
- "version" : " 0.6.1 " ,
3
+ "version" : " 0.6.2 " ,
4
4
"description" : " Plugin for Elysia to auto-generate Swagger page" ,
5
5
"author" : {
6
6
"name" : " saltyAom" ,
29
29
"license" : " MIT" ,
30
30
"scripts" : {
31
31
"dev" : " bun run --watch example/index.ts" ,
32
- "test" : " bun wiptest && npm run test:node" ,
32
+ "test" : " bun test && npm run test:node" ,
33
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
34
"build" : " rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json" ,
35
35
"release" : " npm run build && npm run test && npm publish --access public"
38
38
"elysia" : " >= 0.6.7"
39
39
},
40
40
"devDependencies" : {
41
- "@types/lodash.clonedeep" : " ^4.5.7" ,
42
41
"@types/node" : " ^20.1.4" ,
43
42
"bun-types" : " ^0.7.0" ,
44
- "elysia" : " ^0.6.10 " ,
43
+ "elysia" : " ^0.6.20 " ,
45
44
"eslint" : " ^8.40.0" ,
46
45
"rimraf" : " 4.3" ,
47
46
"typescript" : " ^5.0.4"
48
47
},
49
48
"dependencies" : {
49
+ "@types/lodash.clonedeep" : " ^4.5.7" ,
50
50
"lodash.clonedeep" : " ^4.5.0"
51
51
}
52
52
}
You can’t perform that action at this time.
0 commit comments