seemore 1.11.0 → 1.11.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 +6 -1
- package/package.json +1 -1
- package/src/app/layout/Header.tsx +1 -1
package/README.md
CHANGED
|
@@ -50,11 +50,13 @@ cd my-docs
|
|
|
50
50
|
npx seemore # renders this folder at http://localhost:4040
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
`npx seemore` runs seemore without adding it to your repository's dependencies.
|
|
54
|
+
|
|
53
55
|
Open the address it prints. From there it's live: add, rename, retitle or delete a file and the site updates immediately, navigation and search included.
|
|
54
56
|
|
|
55
57
|
The [seemore website](https://arifszn.github.io/seemore) is itself a folder of Markdown rendered by seemore. That's what your own folder will look like.
|
|
56
58
|
|
|
57
|
-
<details>
|
|
59
|
+
<details open>
|
|
58
60
|
<summary><strong>Or ask an AI agent to set it up</strong></summary>
|
|
59
61
|
<br/>
|
|
60
62
|
|
|
@@ -64,6 +66,9 @@ Not comfortable in a terminal? There's an [agent skill](https://github.com/arifs
|
|
|
64
66
|
|
|
65
67
|
```bash
|
|
66
68
|
/plugin marketplace add arifszn/seemore-skill
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
```bash
|
|
67
72
|
/plugin install seemore
|
|
68
73
|
```
|
|
69
74
|
|
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@ export function Header() {
|
|
|
62
62
|
|
|
63
63
|
{/* Read directly, not through a helper, so an unprotected bundle folds this away. */}
|
|
64
64
|
{import.meta.env.SEEMORE_AUTH ? (
|
|
65
|
-
<button type="button" className="seemore-lock" aria-label="
|
|
65
|
+
<button type="button" className="seemore-lock" aria-label="Sign out" title="Sign out" onClick={() => void lockSite()}>
|
|
66
66
|
<LogOut aria-hidden="true" />
|
|
67
67
|
</button>
|
|
68
68
|
) : undefined}
|