@youtyan/code-viewer 0.8.1 → 0.8.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/README.md +13 -4
- package/dist/code-viewer.js +433 -180
- package/package.json +1 -1
- package/web/app.js +418 -133
- package/web/style.css +92 -24
package/README.md
CHANGED
|
@@ -169,6 +169,12 @@ Large repositories load folder children on demand. The sidebar remembers which
|
|
|
169
169
|
lazy-loaded folders you opened and re-expands them on the next reload, so the
|
|
170
170
|
tree state survives navigation and refresh.
|
|
171
171
|
|
|
172
|
+
Symlinks get a distinct icon and a "→ target" label instead of looking like a
|
|
173
|
+
regular file, and clicking one navigates straight to its resolved target.
|
|
174
|
+
Broken symlinks are flagged and disabled instead of erroring out. Files with
|
|
175
|
+
pending git changes (new, modified, renamed, deleted) show a status badge in
|
|
176
|
+
the tree in place of the regular type icon.
|
|
177
|
+
|
|
172
178
|
## Uploads and Scope Settings
|
|
173
179
|
|
|
174
180
|
File uploads are available for the local worktree target by default. Git tree
|
|
@@ -178,7 +184,9 @@ files or directory names completely.
|
|
|
178
184
|
|
|
179
185
|
Scope settings control directory exclusions shared by the sidebar, Ctrl+K file
|
|
180
186
|
palette, Ctrl+G grep palette, the Datastores browser, and the file change
|
|
181
|
-
watcher — the same list applies to all five.
|
|
187
|
+
watcher — the same list applies to all five. Both the skip list and the hide
|
|
188
|
+
list accept gitignore-style wildcards (`*`, `?`, `[abc]`, `[!abc]`) in
|
|
189
|
+
addition to exact names. Everything you change in Viewer
|
|
182
190
|
Settings is saved on the server under `.code-viewer/settings.json` (no
|
|
183
191
|
separate project-level config file). `.DS_Store` and a broad set of
|
|
184
192
|
build/cache directories (`node_modules`, `dist`, `build`, `.next`, `.turbo`,
|
|
@@ -249,9 +257,10 @@ concurrency via `_seq_no` / `_primary_term`), create new documents, and delete
|
|
|
249
257
|
existing ones. Snapshots and diffs over `_search` iteration are supported.
|
|
250
258
|
|
|
251
259
|
**DynamoDB** support: detect LocalStack services with DynamoDB enabled, list
|
|
252
|
-
tables across paginated responses,
|
|
253
|
-
|
|
254
|
-
|
|
260
|
+
tables across paginated responses, and browse a Structure tab (key schema,
|
|
261
|
+
global/local secondary indexes, and non-key attribute types inferred from
|
|
262
|
+
loaded items) alongside scan or query items, `LastEvaluatedKey` pagination,
|
|
263
|
+
and an item detail view with a copyable key. The explorer is read-only.
|
|
255
264
|
|
|
256
265
|
**S3-compatible object storage** (MinIO, LocalStack): browse
|
|
257
266
|
buckets as a folder tree, search by prefix or filename, sort scanned objects by
|