always add bundle.js

This commit is contained in:
Chris Wanstrath 2025-10-07 20:49:35 -07:00
parent 37d2d9d700
commit 9e6e64cb0e
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
bun run check || exit 1
bun run build || exit 1
bun run build || exit 1
git add ./public/bundle.js

View File

@ -1,5 +1,5 @@
////
// version: 178711c
// version: 8075fac
// src/js/dom.ts
var content2 = $("content");
@ -741,7 +741,7 @@ function handleCompletion(e) {
const input = cmdInput.value;
for (const command of Object.keys(commands)) {
if (command.startsWith(input)) {
cmdInput.value = command;
cmdInput.value = command + " ";
return;
}
}