feat: init
This commit is contained in:
46
node_modules/@nuxt/cli/dist/devtools-BGOrYlGY.mjs
generated
vendored
Normal file
46
node_modules/@nuxt/cli/dist/devtools-BGOrYlGY.mjs
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
import { a as legacyRootDirArgs, t as cwdArgs } from "./_shared-BCYCnX0T.mjs";
|
||||
import { n as logger } from "./logger-B4ge7MhP.mjs";
|
||||
import process from "node:process";
|
||||
import { defineCommand } from "citty";
|
||||
import { colors } from "consola/utils";
|
||||
import { resolve } from "pathe";
|
||||
import { x } from "tinyexec";
|
||||
|
||||
//#region ../nuxi/src/commands/devtools.ts
|
||||
var devtools_default = defineCommand({
|
||||
meta: {
|
||||
name: "devtools",
|
||||
description: "Enable or disable devtools in a Nuxt project"
|
||||
},
|
||||
args: {
|
||||
...cwdArgs,
|
||||
command: {
|
||||
type: "positional",
|
||||
description: "Command to run",
|
||||
valueHint: "enable|disable"
|
||||
},
|
||||
...legacyRootDirArgs
|
||||
},
|
||||
async run(ctx) {
|
||||
const cwd = resolve(ctx.args.cwd || ctx.args.rootDir);
|
||||
const command = ctx.args.command;
|
||||
if (!command || !["enable", "disable"].includes(command)) {
|
||||
logger.error(`Unknown command ${colors.cyan(command || "")}.`);
|
||||
process.exit(1);
|
||||
}
|
||||
await x("npx", [
|
||||
"@nuxt/devtools-wizard@latest",
|
||||
command,
|
||||
cwd
|
||||
], {
|
||||
throwOnError: true,
|
||||
nodeOptions: {
|
||||
stdio: "inherit",
|
||||
cwd
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
//#endregion
|
||||
export { devtools_default as default };
|
||||
Reference in New Issue
Block a user