indxel-cli 0.2.0 → 0.3.1
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.
- package/README.md +145 -76
- package/dist/bin.js +1147 -289
- package/dist/bin.js.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1150 -290
- package/dist/index.js.map +1 -1
- package/package.json +12 -7
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,10 @@ declare const keywordsCommand: Command;
|
|
|
10
10
|
|
|
11
11
|
declare const indexCommand: Command;
|
|
12
12
|
|
|
13
|
+
declare const perfCommand: Command;
|
|
14
|
+
|
|
15
|
+
declare const linkCommand: Command;
|
|
16
|
+
|
|
13
17
|
declare function createProgram(): Command;
|
|
14
18
|
|
|
15
|
-
export { checkCommand, crawlCommand, createProgram, indexCommand, initCommand, keywordsCommand };
|
|
19
|
+
export { checkCommand, crawlCommand, createProgram, indexCommand, initCommand, keywordsCommand, linkCommand, perfCommand };
|