adhdev 0.1.42 → 0.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8026,6 +8026,9 @@ ${import_chalk.default.cyan("\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2
|
|
|
8026
8026
|
`;
|
|
8027
8027
|
var DIVIDER = import_chalk.default.gray("\u2500".repeat(44));
|
|
8028
8028
|
async function runWizard(options = {}) {
|
|
8029
|
+
const loader = new ProviderLoader();
|
|
8030
|
+
loader.loadAll();
|
|
8031
|
+
loader.registerToDetector();
|
|
8029
8032
|
console.log(LOGO);
|
|
8030
8033
|
if (isSetupComplete() && !options.force) {
|
|
8031
8034
|
const config = loadConfig();
|
|
@@ -8476,6 +8479,7 @@ init_config();
|
|
|
8476
8479
|
init_launch();
|
|
8477
8480
|
var import_fs3 = require("fs");
|
|
8478
8481
|
var import_path2 = require("path");
|
|
8482
|
+
init_provider_loader();
|
|
8479
8483
|
var pkgVersion = "unknown";
|
|
8480
8484
|
try {
|
|
8481
8485
|
const possiblePaths = [
|
|
@@ -8494,6 +8498,9 @@ try {
|
|
|
8494
8498
|
}
|
|
8495
8499
|
} catch {
|
|
8496
8500
|
}
|
|
8501
|
+
var _cliProviderLoader = new ProviderLoader();
|
|
8502
|
+
_cliProviderLoader.loadAll();
|
|
8503
|
+
_cliProviderLoader.registerToDetector();
|
|
8497
8504
|
var program = new import_commander.Command();
|
|
8498
8505
|
program.name("adhdev").description("\u{1F309} ADHDev \u2014 Agent Dashboard Hub for your IDE").version(pkgVersion);
|
|
8499
8506
|
program.command("setup").description("Run the interactive setup wizard").option("-f, --force", "Force re-run setup even if already configured").action(async (options) => {
|