This is only for testing npm init for installing other things.
https://learnjsthehardway.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
#!/usr/bin/env node
|
|
|
|
import { Command } from "commander";
|
|
// NOTE: this changed in node 18 to be node:url for...stupid
|
|
import { fileURLToPath } from "url";
|
|
import { glob } from "./lib/builderator.js";
|
|
import path from "path";
|
|
import assert from "assert";
|
|
import fs from "fs";
|
|
|
|
// BUG: this will load the commands but most of them assume the root
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const { dir } = path.parse(__filename);
|
|
let __dirname = dir;
|
|
|
|
// now even exec commands will know where the project root is
|
|
process.env['PROJECT_ROOT'] = __dirname;
|
|
const program = new Command();
|
|
// remember that glob doesn't like windows \
|
|
const command_dir = `${__dirname}/commands`;
|
|
|
|
if(!fs.existsSync(command_dir)) {
|
|
console.error("ERROR: there is no command directory at", command_dir);
|
|
process.exit(1);
|
|
}
|
|
|
|
program
|
|
.name("bando")
|
|
.description("Command runner for the bando project.")
|
|
.version("0.1.0");
|
|
|
|
for(let command of glob(`${command_dir}/*.js`)) {
|
|
const { name } = path.parse(command);
|
|
const mod = await import(command);
|
|
|
|
assert(mod.description, `export const description missing in ${command}`);
|
|
assert(mod.main, `export const main missing in ${command}`);
|
|
|
|
const build = program.command(name)
|
|
.description(mod.description)
|
|
.action(mod.main);
|
|
|
|
if(mod.options) {
|
|
mod.options.forEach(opt => build.option(...opt));
|
|
}
|
|
|
|
if(mod.required) {
|
|
mod.required.forEach(opt => build.requiredOption(...opt));
|
|
}
|
|
|
|
if(mod.argument) {
|
|
build.argument(...mod.argument);
|
|
}
|
|
}
|
|
|
|
try {
|
|
program.parse();
|
|
} catch(error) {
|
|
console.log("------------- ERROR, here's the stack trace.");
|
|
console.error(error.stack);
|
|
process.exit(1);
|
|
}
|
|
|