fix(tracker-web): format markdown + ignore e2e artifacts in prettier/git
Run Prettier over README and roadmap docs to satisfy format:check, and add .prettierignore plus .gitignore entries for playwright-report/test-results so generated e2e artifacts no longer break the format gate. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
d0707f22a5
commit
8738d07da7
6
dashboards/tracker-web/.gitignore
vendored
6
dashboards/tracker-web/.gitignore
vendored
@ -11,6 +11,12 @@
|
|||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
|
# playwright e2e artifacts
|
||||||
|
/test-results/
|
||||||
|
/playwright-report/
|
||||||
|
/blob-report/
|
||||||
|
/playwright/.cache/
|
||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/.next/
|
||||||
/out/
|
/out/
|
||||||
|
|||||||
19
dashboards/tracker-web/.prettierignore
Normal file
19
dashboards/tracker-web/.prettierignore
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Build output
|
||||||
|
.next/
|
||||||
|
out/
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Coverage + test artifacts
|
||||||
|
coverage/
|
||||||
|
test-results/
|
||||||
|
playwright-report/
|
||||||
|
blob-report/
|
||||||
|
|
||||||
|
# Generated / vendored
|
||||||
|
next-env.d.ts
|
||||||
|
*.tsbuildinfo
|
||||||
|
pnpm-lock.yaml
|
||||||
|
package-lock.json
|
||||||
@ -36,6 +36,7 @@ npm run dev # starts on port 3003
|
|||||||
## Environment Variables
|
## Environment Variables
|
||||||
|
|
||||||
See `.env.local.example` for required variables:
|
See `.env.local.example` for required variables:
|
||||||
|
|
||||||
- `PLATFORM_API_URL` — Platform service URL (default `http://localhost:4003`)
|
- `PLATFORM_API_URL` — Platform service URL (default `http://localhost:4003`)
|
||||||
- `JWT_SECRET` — Shared JWT secret
|
- `JWT_SECRET` — Shared JWT secret
|
||||||
- `PRODUCT_ID` — Product scope (e.g., `lysnrai`, `chronomind`, `nomgap`)
|
- `PRODUCT_ID` — Product scope (e.g., `lysnrai`, `chronomind`, `nomgap`)
|
||||||
|
|||||||
@ -73,21 +73,21 @@ pnpm build # final gate
|
|||||||
- [x] **1.2** In `src/app/globals.css`, add a **bridge layer** mapping `--bl-*` → existing tracker
|
- [x] **1.2** In `src/app/globals.css`, add a **bridge layer** mapping `--bl-*` → existing tracker
|
||||||
vars so shared components theme correctly in light + dark. Minimum set (extend as needed):
|
vars so shared components theme correctly in light + dark. Minimum set (extend as needed):
|
||||||
`css
|
`css
|
||||||
:root, .dark {
|
:root, .dark {
|
||||||
--bl-accent: var(--primary);
|
--bl-accent: var(--primary);
|
||||||
--bl-accent-foreground: var(--primary-foreground);
|
--bl-accent-foreground: var(--primary-foreground);
|
||||||
--bl-bg-canvas: var(--background);
|
--bl-bg-canvas: var(--background);
|
||||||
--bl-surface-card: var(--card);
|
--bl-surface-card: var(--card);
|
||||||
--bl-text-primary: var(--foreground);
|
--bl-text-primary: var(--foreground);
|
||||||
--bl-text-secondary: var(--muted-foreground);
|
--bl-text-secondary: var(--muted-foreground);
|
||||||
--bl-text-tertiary: var(--muted-foreground);
|
--bl-text-tertiary: var(--muted-foreground);
|
||||||
--bl-border: var(--border);
|
--bl-border: var(--border);
|
||||||
--bl-danger: var(--destructive);
|
--bl-danger: var(--destructive);
|
||||||
--bl-radius-control: var(--radius-md);
|
--bl-radius-control: var(--radius-md);
|
||||||
--bl-radius-card: var(--radius-lg);
|
--bl-radius-card: var(--radius-lg);
|
||||||
/* map chart palette: --bl-chart-1 → --chart-1 … */
|
/* map chart palette: --bl-chart-1 → --chart-1 … */
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
Reference the showcase's `globals.css` fallback layer for the full `--bl-*` surface. (dc01dd02)
|
Reference the showcase's `globals.css` fallback layer for the full `--bl-*` surface. (dc01dd02)
|
||||||
- [x] **1.3** Create `src/components/ui/Primitives.tsx` re-exporting the `@bytelyst/ui` components
|
- [x] **1.3** Create `src/components/ui/Primitives.tsx` re-exporting the `@bytelyst/ui` components
|
||||||
this app needs (`Button` `Input` `Field*` `Modal` `ConfirmDialog` `Badge` `StatusBadge`
|
this app needs (`Button` `Input` `Field*` `Modal` `ConfirmDialog` `Badge` `StatusBadge`
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user