diff --git a/build.ts b/build.ts index 163fa2f4..6690d50c 100644 --- a/build.ts +++ b/build.ts @@ -48,6 +48,8 @@ await $`cp beemovie.txt dist/beemovie.txt`; // Copy package.json await $`cp package.json dist/package.json`; +// Copy cli/theme.json +await $`cp cli/theme.json dist/cli/theme.json`; buildSpinner.stop(); diff --git a/bun.lockb b/bun.lockb index d40c8910..03450fbb 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/cli/commands/emoji/add.ts b/cli/commands/emoji/add.ts index 7550c4c6..5cbb6d6c 100644 --- a/cli/commands/emoji/add.ts +++ b/cli/commands/emoji/add.ts @@ -38,6 +38,8 @@ export default class EmojiAdd extends BaseCommand { this.exit(1); } + this.log("Placeholder command, this command is not implemented yet."); + /* if (!user) { this.log( `${chalk.red("✗")} Failed to create user ${chalk.red( diff --git a/package.json b/package.json index da43fcf2..6ab80139 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ }, "additionalHelpFlags": ["-h"], "additionalVersionFlags": ["-v"], - "plugins": ["@oclif/plugin-help"], + "plugins": [], "description": "CLI to interface with the Lysand project", "topicSeparator": " ", "topics": { @@ -95,8 +95,6 @@ "@inquirer/confirm": "^3.1.6", "@inquirer/input": "^2.1.6", "@oclif/core": "^3.26.6", - "@oclif/plugin-help": "^6.0.21", - "@oclif/plugin-plugins": "^5.0.19", "cli-progress": "^3.12.0", "ora": "^8.0.1", "table": "^6.8.2",