mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
13 lines
335 B
JavaScript
13 lines
335 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/** Command-line entry that prepares the current `.dsh-plugin` package. @module */
|
|
|
|
import { prepareDshPlugin } from './format.ts'
|
|
|
|
try {
|
|
await prepareDshPlugin()
|
|
} catch (error) {
|
|
process.stderr.write(`dsh-plugin-prepare: ${error instanceof Error ? error.message : String(error)}\n`)
|
|
process.exitCode = 1
|
|
}
|