This commit is contained in:
sepia 2025-07-15 12:13:17 -05:00
commit c15c9c16c8
15 changed files with 1601 additions and 0 deletions

40
justfile Normal file
View file

@ -0,0 +1,40 @@
# justfile for Elysia project
# Install dependencies
install:
bun install
# Run the development server
dev:
bun run --watch src/index.ts
# Build the project
build:
bun run build
# Run tests
test:
bun test
check:
bunx tsc --noEmit --skipLibCheck
# Lint the project
lint:
# Add your lint command here, for example:
# bun run lint
echo "Linting not configured yet"
# Clean the project
clean:
rm -rf node_modules
rm -rf dist
# Format the code
format:
bun run prettier . --write
# Bump version
bump-version:
# Add your version bump command here
echo "Version bump not configured yet"