echoctl 0.1.2 → 0.1.3
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/package.json +1 -1
- package/scripts/build-docs.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echoctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Local-first AI conversation knowledge forum — capture, search, and annotate Claude Code sessions as Markdown articles with MCP server support",
|
package/scripts/build-docs.js
CHANGED
|
@@ -7,7 +7,7 @@ const store = require("./lib/infra/markdown-store");
|
|
|
7
7
|
const { stripCommentSections } = require("./lib/usecases/strip-comments");
|
|
8
8
|
const { TURN_MARKER_REGEX } = require("./lib/domain/echo-format");
|
|
9
9
|
|
|
10
|
-
const PACKAGE_DOCS_ROOT = path.resolve(__dirname, "
|
|
10
|
+
const PACKAGE_DOCS_ROOT = path.resolve(__dirname, "../docs");
|
|
11
11
|
const PACKAGE_ROOT = path.resolve(__dirname, "..");
|
|
12
12
|
|
|
13
13
|
function defaultDocsRoot() {
|