mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
fix(cli): 🐛 Remove plugin-help from oclif as it was causing bundling errors
This commit is contained in:
parent
19c14ef3fc
commit
47c88dd7dd
2
build.ts
2
build.ts
|
|
@ -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();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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(
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue