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 packages:build from dev and test tasks

Adonis uses tsx under the hood for node ace serve --hmr and node ace
test. tsx reads the tsconfig paths alias and resolves @skystar/atproto
directly to packages/atproto/src/index.ts at runtime — no dist files
needed. The packages:build step is only required for the production
build path (node ace build, the Dockerfile), which remains unchanged.

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

+2 -2
+2 -2
mise.toml
··· 79 79 80 80 [tasks.dev] 81 81 description = "Spin up the full dev environment: ClickHouse, migrations, web + jetstream + queue workers" 82 - depends = ["packages:build", "db:migrate"] 82 + depends = ["db:migrate"] 83 83 run = [ 84 84 { tasks = ["dev:web", "dev:jetstream", "dev:queue"] }, 85 85 ] 86 86 87 87 [tasks.test] 88 88 description = "Run the full test suite (starts ClickHouse if needed)" 89 - depends = ["install", "packages:build", "db:wait"] 89 + depends = ["install", "db:wait"] 90 90 dir = "{{config_root}}/apps/web" 91 91 run = "node ace test" 92 92