See the best posts from any Bluesky account
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mise: drop test, lint, build tasks

They add nothing over the existing apps/web npm scripts (npm test,
npm run lint, npm run build). Mise now only owns the orchestration
that npm can't do cleanly: docker compose startup, waiting, multi-step
migrations, and parallel long-running dev processes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

-19
-19
mise.toml
··· 55 55 run = [ 56 56 { tasks = ["dev:web", "dev:jetstream", "dev:queue"] }, 57 57 ] 58 - 59 - [tasks.test] 60 - description = "Run the full test suite" 61 - depends = ["db:wait"] 62 - dir = "{{config_root}}/apps/web" 63 - run = "node ace test" 64 - 65 - [tasks.lint] 66 - description = "Run ESLint on the web app" 67 - dir = "{{config_root}}/apps/web" 68 - run = "npm run lint" 69 - 70 - [tasks.build] 71 - description = "Production build: workspace packages and Adonis app" 72 - run = [ 73 - "cd packages/atproto && npm run build", 74 - "cd packages/clickhouse && npm run build", 75 - "cd apps/web && node ace build", 76 - ]