diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-22 11:02:15 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-22 11:02:15 +0200 |
| commit | 3b677af830672759198a0bb8167b4929a9afd997 (patch) | |
| tree | fa8bcde38b2c3ce72a41c8edca385ce81456dc1b /packages/meshbay-client/package.json | |
| parent | 4335a515c67477a6ac33356361b4f43a5df5e642 (diff) | |
| download | meshbay-3b677af830672759198a0bb8167b4929a9afd997.tar.gz | |
fix: move meshbay-client build scripts out of gitignored build/ dir
The root .gitignore ignores build/ (Python convention), which silently
prevented sync-ui.js and its companion index.html from being committed.
Rename to scripts/ so the files are tracked normally.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-client/package.json')
| -rw-r--r-- | packages/meshbay-client/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-client/package.json b/packages/meshbay-client/package.json index b9c5a50..3aa647a 100644 --- a/packages/meshbay-client/package.json +++ b/packages/meshbay-client/package.json @@ -7,7 +7,7 @@ "private": true, "scripts": { "start": "electron .", - "sync-ui": "node build/sync-ui.js", + "sync-ui": "node scripts/sync-ui.js", "dist": "npm run sync-ui && electron-builder --linux deb rpm" }, "devDependencies": { |