mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Remove dead design-session citations, change narration, indexical stamps, and review-adjacent justification found by the dsh-trim-cot-leakage recall batteries in prose that landed after the last purge. Bilingual README pairs are re-recorded.
21 lines
796 B
JavaScript
Executable File
21 lines
796 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
* Stable link target for the `dsh-pack-vfs-image` bin, forwarding to the build
|
|
* product.
|
|
*
|
|
* pnpm creates a workspace package's bin link only when the link target exists
|
|
* at install time. `lib/bin.js` is a build product and is absent on a clean
|
|
* checkout, so this committed file is the link target; it forwards to the build
|
|
* product when the command runs.
|
|
* @module @deepseek-ai/dsh-experimental-webworker-packer/bin
|
|
*/
|
|
import { existsSync } from 'node:fs'
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
const entry = new URL('./lib/bin.js', import.meta.url)
|
|
if (!existsSync(fileURLToPath(entry))) {
|
|
process.stderr.write('dsh-pack-vfs-image: lib/bin.js is missing — run `pnpm run build` before packing an image\n')
|
|
process.exit(1)
|
|
}
|
|
await import(entry.href)
|