fix(cli): 🐛 Remove plugin-help from oclif as it was causing bundling errors

This commit is contained in:
Jesse Wierzbinski 2024-05-08 07:26:17 +00:00
parent 19c14ef3fc
commit 47c88dd7dd
No known key found for this signature in database
4 changed files with 5 additions and 3 deletions

View file

@ -48,6 +48,8 @@ await $`cp beemovie.txt dist/beemovie.txt`;
// Copy package.json // Copy package.json
await $`cp package.json dist/package.json`; await $`cp package.json dist/package.json`;
// Copy cli/theme.json
await $`cp cli/theme.json dist/cli/theme.json`;
buildSpinner.stop(); buildSpinner.stop();

BIN
bun.lockb

Binary file not shown.

View file

@ -38,6 +38,8 @@ export default class EmojiAdd extends BaseCommand<typeof EmojiAdd> {
this.exit(1); this.exit(1);
} }
this.log("Placeholder command, this command is not implemented yet.");
/* if (!user) { /* if (!user) {
this.log( this.log(
`${chalk.red("✗")} Failed to create user ${chalk.red( `${chalk.red("✗")} Failed to create user ${chalk.red(

View file

@ -61,7 +61,7 @@
}, },
"additionalHelpFlags": ["-h"], "additionalHelpFlags": ["-h"],
"additionalVersionFlags": ["-v"], "additionalVersionFlags": ["-v"],
"plugins": ["@oclif/plugin-help"], "plugins": [],
"description": "CLI to interface with the Lysand project", "description": "CLI to interface with the Lysand project",
"topicSeparator": " ", "topicSeparator": " ",
"topics": { "topics": {
@ -95,8 +95,6 @@
"@inquirer/confirm": "^3.1.6", "@inquirer/confirm": "^3.1.6",
"@inquirer/input": "^2.1.6", "@inquirer/input": "^2.1.6",
"@oclif/core": "^3.26.6", "@oclif/core": "^3.26.6",
"@oclif/plugin-help": "^6.0.21",
"@oclif/plugin-plugins": "^5.0.19",
"cli-progress": "^3.12.0", "cli-progress": "^3.12.0",
"ora": "^8.0.1", "ora": "^8.0.1",
"table": "^6.8.2", "table": "^6.8.2",