mirror of
https://github.com/sotashimozono/obsidian-remote-ssh.git
synced 2026-07-22 06:52:07 +00:00
* chore(docs): consolidate docs-site/ into repo root Eliminates the docs-site/ subdirectory entirely. Quartz config files and package.json now live at the repo root alongside docs/ content: quartz.config.ts, quartz.layout.ts — Quartz user config package.json, package-lock.json — Quartz npm deps (npm ci) globals.d.ts, index.d.ts — Quartz browser type decls tsconfig.quartz.json — scoped to quartz/**/*.ts only .npmrc, .node-version, .prettierrc — tooling config docs.yml updated: working-directory removed, paths updated to root, build command changed from -d ../docs to -d docs, deploy folder from docs-site/public to public. .gitignore: docs-site/* entries replaced with root-level equivalents (.quartz-cache/, public/, quartz/). .gitattributes: merged * text=auto eol=lf from docs-site/.gitattributes. * chore: bump to 1.1.2-beta.3 * ci(commitlint): bump node to 22 (root package.json requires node>=22)
40 lines
1.2 KiB
Text
40 lines
1.2 KiB
Text
node_modules/
|
|
main.js
|
|
*.js.map
|
|
.DS_Store
|
|
coverage/
|
|
cdp-console.log
|
|
plugin/server-bin/
|
|
|
|
# Claude Code local agent state — per-developer, not project source.
|
|
.claude/
|
|
|
|
# Phase C sync-latency microbench (M6) results — NDJSON files
|
|
# produced per integration run. The M10 CI gate publishes the
|
|
# baseline to an orphan branch instead of committing it here.
|
|
plugin/perf-results/
|
|
|
|
# Cross-version test replay scratch dir. Populated by
|
|
# `npm run test:replay` (and the `replay.yml` CI workflow) with the
|
|
# previous release tag's tests; cleaned up at script exit. Should
|
|
# never appear in the working tree of a clean checkout.
|
|
plugin/tests-replay/
|
|
|
|
# Playwright E2E test results (HTML report + traces).
|
|
plugin/e2e-results/
|
|
plugin/e2e/demo-screenshots/
|
|
plugin/test-results/
|
|
|
|
# Docker test environment artefacts: keypair generated on first run,
|
|
# bind-mounted vault contents written by integration tests.
|
|
docker/keys/id_test
|
|
docker/keys/id_test.pub
|
|
docker/test-vault/*
|
|
!docker/test-vault/.gitkeep
|
|
!docker/test-vault/remote_demo*.md
|
|
|
|
# Quartz build artifacts (generated at repo root after docs-site/ consolidation)
|
|
.quartz-cache/
|
|
public/
|
|
# Quartz framework source — fetched in CI from docs/quartz-framework branch
|
|
quartz/
|