mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-15 23:31:10 +00:00
- Interactive agent selection for install/uninstall/list - Namespace search selection for unspecified namespace - --skill-version option to skip interactive selection - --from option for local/github source installation - Remove deprecated add command (use install --from instead) - Path-based grouping for uninstall results
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import { defineBuildConfig } from "unbuild";
|
|
|
|
export default defineBuildConfig({
|
|
entries: ["src/cli"],
|
|
outDir: "dist",
|
|
clean: true,
|
|
rollup: {
|
|
emitCJS: false,
|
|
},
|
|
});
|