fix(core): update

This commit is contained in:
2026-02-03 16:59:32 +00:00
parent 826f3a6c63
commit 0daae0bd07
18 changed files with 8463 additions and 94 deletions

View File

@@ -1,3 +1,9 @@
import plugins = require('./tools.plugins');
import * as cli from './tools.cli';
cli.run();
import * as plugins from './tools.plugins.js';
import * as cli from './tools.cli.js';
export const runCli = async () => {
await cli.run();
};
// Auto-run when called directly
runCli();