chore: Clean up imports
All checks were successful
Label PRs based on size / Check PR size (pull_request) Successful in 6s

This commit is contained in:
Jan K9f 2025-06-19 17:06:44 +02:00
commit 50ecd8ce86
Signed by: jank
GPG key ID: 22BEAC760B3333D6

View file

@ -1,6 +1,6 @@
#!/usr/bin/env node
import fs, { readFileSync } from "fs";
import fs from "fs";
import { confirm, select, input } from "@inquirer/prompts";
import { exit } from "process";
import {
@ -13,10 +13,8 @@ import {
} from "./configuration/configuration";
import { execSync } from "child_process";
import { program } from "commander";
import { dirname, join } from "path";
import { fileURLToPath } from "bun";
const packageJson = require("./package.json");
import packageJson from "./package.json";
export const VERSION = packageJson.version;
const CLI_NAME = "pcli";