Quote process names with hyphens in devenv.nix

Nix attribute names with hyphens need to be quoted.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-08 08:05:31 +08:00
parent bba08a4330
commit e387d8c123

View File

@@ -15,7 +15,7 @@
};
processes = {
dev-publisher-dashboard.exec = "bun run --cwd apps/publisher-dashboard dev";
build-watch.exec = "bun run build:watch:packages";
"dev-publisher-dashboard".exec = "bun run --cwd apps/publisher-dashboard dev";
"build-watch".exec = "bun run build:watch:packages";
};
}