chore: 移除 autowire

This commit is contained in:
xiaojunnuo
2025-04-28 23:34:08 +08:00
parent 0b6941d5ce
commit f2d6c3ad83
17 changed files with 116 additions and 106 deletions
@@ -1,11 +1,11 @@
// 扫描目录,列出文件,然后加载为模块
import { join } from 'path';
import fs from 'fs'
import path, { join } from "path";
import fs from "fs";
import { pathToFileURL } from "node:url";
import path from 'path'
import * as yaml from "js-yaml";
import {AbstractTaskPlugin, BaseAccess, BaseNotification} from "@certd/pipeline";
import { AbstractTaskPlugin, BaseAccess, BaseNotification } from "@certd/pipeline";
function scanDir(dir) {
const files = fs.readdirSync(dir);
const result = [];
@@ -92,4 +92,7 @@ for (const key in modules) {
}
}
}
process.exit();
// import why from 'why-is-node-running'
// setTimeout(() => why(), 100); // 延迟打印原因
process.exit(-1)