- Add build:watch script to package.json (turbo build --watch) - Configure devenv processes: - dev: runs turbo dev server - build-watch: runs turbo build in watch mode - Run with `devenv up` to start all processes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
288 B
Nix
22 lines
288 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
packages = with pkgs; [
|
|
nixfmt-rfc-style
|
|
biome
|
|
git
|
|
];
|
|
|
|
dotenv.enable = true;
|
|
|
|
languages.javascript = {
|
|
enable = true;
|
|
bun.enable = true;
|
|
};
|
|
|
|
processes = {
|
|
dev.exec = "bun run dev";
|
|
build-watch.exec = "bun run build:watch";
|
|
};
|
|
}
|