load.mjs 469 B

12345678910111213
  1. /**
  2. * Keyless fixture owner that mounts the runtime before its prepared wrapper.
  3. * Cordis starts sibling Loader entries concurrently, so row order is not a dependency edge.
  4. */
  5. import * as RepositoryPlugin from '@deepseek-ai/dsh-repository-plugin'
  6. import * as PreparedPlugin from './dsh-plugin.mjs'
  7. export const name = 'headless-repository-fixture-loader'
  8. export async function apply(ctx) {
  9. await ctx.plugin(RepositoryPlugin)
  10. await ctx.plugin(PreparedPlugin)
  11. }