File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ const formatDoc = async () => {
9
9
fs . unlinkSync ( "./docs/modules.html" ) ;
10
10
fs . mkdirSync ( "./docs/api reference" ) ;
11
11
fs . renameSync ( "./docs/index.html" , "./docs/tutorial.html" ) ;
12
+ fs . copyFileSync (
13
+ "./docs/modules/utils.html" ,
14
+ "./docs/api reference/utils.html"
15
+ ) ;
12
16
13
17
fs . rmdirSync ( "./docs/modules" , { recursive : true } ) ;
14
18
fs . rmdirSync ( "./docs/assets" , { recursive : true } ) ;
@@ -31,4 +35,4 @@ const formatDoc = async () => {
31
35
fs . rmdirSync ( "./docs/classes" , { recursive : true } ) ;
32
36
} ;
33
37
34
- // formatDoc();
38
+ formatDoc ( ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import { Index } from "./MilvusIndex";
7
7
import { Data } from "./Data" ;
8
8
import sdkInfo from "../sdk.json" ;
9
9
import { ERROR_REASONS } from "./const/ErrorReason" ;
10
- import * as formatUtils from "./utils/Format" ;
11
10
12
11
const protoPath = path . resolve ( __dirname , "../grpc-proto/milvus.proto" ) ;
13
12
export class MilvusClient {
You can’t perform that action at this time.
0 commit comments