Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.claude/worktrees
/node_modules
*/node_modules
/public/charges
/dist
/coverage
/playwright-report
Expand Down
802 changes: 392 additions & 410 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"postinstall": "symlink-dir ../node_modules/armoria/charges public/charges",

Copilot AI Mar 7, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The postinstall script symlinks from ../node_modules/armoria/charges, but since armoria is installed from file:../armoria/dist, its actual location in node_modules may differ (it could resolve differently depending on the package manager and file-link handling). Additionally, symlink-dir is a dev dependency, meaning this postinstall script will fail in production installs (e.g., npm install --omit=dev). Consider moving symlink-dir to dependencies, or replacing the postinstall approach with a Vite plugin or build step that copies/links the charges directory.

Copilot uses AI. Check for mistakes.
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
Expand Down Expand Up @@ -45,11 +46,13 @@
},
"dependencies": {
"alea": "^1.0.1",
"armoria": "file:../armoria/dist",

Copilot AI Mar 7, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The armoria dependency is specified as a local file path (file:../armoria/dist), which means it points to a sibling directory on the developer's local machine. This will fail for any contributor or CI environment that does not have the armoria repository checked out at exactly ../armoria. The PR description mentions it is an NPM package — it should be referenced by a published NPM package name and version (e.g., "armoria": "^x.y.z") or a specific GitHub repository reference instead.

Suggested change
"armoria": "file:../armoria/dist",
"armoria": "latest",

Copilot uses AI. Check for mistakes.
"d3": "^7.9.0",
"delaunator": "^5.0.1",
"driver.js": "^1.4.0",
"lineclip": "^2.0.0",
"polylabel": "^2.0.1",
"symlink-dir": "^9.0.0",
"three": "^0.184.0"
},
"engines": {
Expand Down
132 changes: 0 additions & 132 deletions public/charges/agnusDei.svg

This file was deleted.

9 changes: 0 additions & 9 deletions public/charges/anchor.svg

This file was deleted.

227 changes: 0 additions & 227 deletions public/charges/angel.svg

This file was deleted.

6 changes: 0 additions & 6 deletions public/charges/annulet.svg

This file was deleted.

13 changes: 0 additions & 13 deletions public/charges/anvil.svg

This file was deleted.

8 changes: 0 additions & 8 deletions public/charges/apple.svg

This file was deleted.

39 changes: 0 additions & 39 deletions public/charges/arbalest.svg

This file was deleted.

24 changes: 0 additions & 24 deletions public/charges/arbalest2.svg

This file was deleted.

Loading