mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-12-11 00:21:24 +01:00
chore: better Prettier config for easier reviews
This commit is contained in:
18
cli/cli.ts
18
cli/cli.ts
@@ -1,15 +1,15 @@
|
||||
import { Builtins, Cli } from 'clipanion'
|
||||
import { Builtins, Cli } from "clipanion"
|
||||
|
||||
import { GenerateChallengeCommand } from './commands/generate/challenge.js'
|
||||
import { GenerateSolutionCommand } from './commands/generate/solution.js'
|
||||
import { RunSolutionCommand } from './commands/run/solution.js'
|
||||
import { RunTestCommand } from './commands/run/test.js'
|
||||
import { SearchCommand } from './commands/search/index.js'
|
||||
import { GenerateChallengeCommand } from "./commands/generate/challenge.js"
|
||||
import { GenerateSolutionCommand } from "./commands/generate/solution.js"
|
||||
import { RunSolutionCommand } from "./commands/run/solution.js"
|
||||
import { RunTestCommand } from "./commands/run/test.js"
|
||||
import { SearchCommand } from "./commands/search/index.js"
|
||||
|
||||
export const cli = new Cli({
|
||||
binaryLabel: 'programming-challenges',
|
||||
binaryName: 'programming-challenges',
|
||||
binaryVersion: '1.0.0'
|
||||
binaryLabel: "programming-challenges",
|
||||
binaryName: "programming-challenges",
|
||||
binaryVersion: "1.0.0",
|
||||
})
|
||||
cli.register(Builtins.HelpCommand)
|
||||
cli.register(Builtins.VersionCommand)
|
||||
|
||||
Reference in New Issue
Block a user