File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -46,5 +46,7 @@ test-output
46
46
47
47
client.d.ts
48
48
client.js
49
+ openapi.d.ts
50
+ openapi.js
49
51
bun.lockb
50
52
schema.json
Original file line number Diff line number Diff line change
1
+ export * from './lib/openapi' ;
Original file line number Diff line number Diff line change 29
29
" es" ,
30
30
" client.d.ts" ,
31
31
" client.js" ,
32
+ " openapi.d.ts" ,
33
+ " openapi.js" ,
32
34
" schema.json"
33
35
],
34
36
"scripts" : {
35
- "build" : " father build && npm run build:client && npm run build:schema" ,
36
- "build:client " : " tsc client.ts --declaration" ,
37
+ "build" : " father build && npm run build:entry && npm run build:schema" ,
38
+ "build:entry " : " tsc client.ts --declaration && tsc openapi .ts --declaration" ,
37
39
"build:schema" : " ts-json-schema-generator --path src/types/manifest.ts --type LobeChatPluginManifest -o schema.json" ,
38
40
"ci" : " npm run lint && npm run type-check && npm run doctor" ,
39
41
"dev" : " father dev" ,
Original file line number Diff line number Diff line change 1
1
export * from './error' ;
2
- export * from './openapi' ;
3
2
export * from './request' ;
4
3
export * from './schema/manifest' ;
5
4
export * from './schema/market' ;
You can’t perform that action at this time.
0 commit comments