fix(examples): own repository plugin startup order

This commit is contained in:
Tianyi Cui
2026-07-30 06:30:09 +08:00
parent a7b84bec68
commit a0aed8a19f
2 changed files with 14 additions and 4 deletions
@@ -0,0 +1,13 @@
/**
* Keyless fixture owner that mounts the runtime before its prepared wrapper.
* Cordis starts sibling Loader entries concurrently, so row order is not a dependency edge.
*/
import * as RepositoryPlugin from '@deepseek-ai/dsh-repository-plugin'
import * as PreparedPlugin from './dsh-plugin.mjs'
export const name = 'headless-repository-fixture-loader'
export async function apply(ctx) {
await ctx.plugin(RepositoryPlugin)
await ctx.plugin(PreparedPlugin)
}