diffwiki 0.2.0-rc.202607210929.3b44b69 → 0.2.0-rc.f44d17c
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/dist/bin.js +0 -3
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
@@ -50,9 +50,6 @@ var icon = (level) => level === "ok" ? "\u2713" : level === "warn" ? "!" : "\u27
|
|
|
50
50
|
function createProgram() {
|
|
51
51
|
const program = new Command();
|
|
52
52
|
program.name("diffwiki").description("A git-based knowledge base").version(version).showHelpAfterError();
|
|
53
|
-
program.action(() => {
|
|
54
|
-
program.outputHelp();
|
|
55
|
-
});
|
|
56
53
|
program.command("list").description("List all collections").action(
|
|
57
54
|
withErrors(async () => {
|
|
58
55
|
const collections = await listCollections();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "diffwiki",
|
|
3
|
-
"version": "0.2.0-rc.
|
|
3
|
+
"version": "0.2.0-rc.f44d17c",
|
|
4
4
|
"description": "diffwiki command-line interface",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"commander": "^13.0.0",
|
|
18
|
-
"diffwiki-core": "0.2.0-rc.
|
|
18
|
+
"diffwiki-core": "0.2.0-rc.f44d17c"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^22.0.0"
|