@altronix/cli 0.7.3 → 0.7.4
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { program } from "commander";
|
|
|
2
2
|
import path from "path";
|
|
3
3
|
import fs from "fs";
|
|
4
4
|
import { build } from "./build.js";
|
|
5
|
-
import { plugins } from "./plugin.js";
|
|
5
|
+
//import { plugins } from "./plugin.js";
|
|
6
6
|
import { fileURLToPath } from "url";
|
|
7
7
|
// https://stackoverflow.com/questions/8817423/why-is-dirname-not-defined-in-node-repl
|
|
8
8
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
@@ -40,7 +40,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
40
40
|
.option("-y, --yes", "answer yes automatically")
|
|
41
41
|
.action(build);
|
|
42
42
|
// Load plugins
|
|
43
|
-
(await plugins()).forEach(({ plugin: _, path: __, description: ___ }) => {
|
|
43
|
+
// (await plugins()).forEach(({ plugin: _, path: __, description: ___ }) => {});
|
|
44
44
|
try {
|
|
45
45
|
await program.parseAsync();
|
|
46
46
|
}
|