Transition to rollup to support exports (#106)

* Use .js for imports

* WIP

* WIP

* Finish transitioning to esm

* Disable experimental commands

* Bring back bootstrap
This commit is contained in:
ryan-the-crayon
2024-11-26 11:43:21 -05:00
committed by GitHub
parent efec76ac9e
commit bca35e0cce
19 changed files with 73 additions and 64 deletions

View File

@ -6,9 +6,9 @@ import { option, optional, string } from "cmd-ts";
import { readFile } from "fs/promises";
import { homedir } from "os";
import path from "path";
import { type LogLevelArgs } from "./logLevel";
import { checkHttpServer } from "./subcommands/server";
import { refinedNumber } from "./types/refinedNumber";
import { type LogLevelArgs } from "./logLevel.js";
import { checkHttpServer } from "./subcommands/server.js";
import { refinedNumber } from "./types/refinedNumber.js";
interface AppInstallLocation {
path: string;