1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

build(deps): update latest

This commit is contained in:
Divlo
2023-01-10 23:15:36 +01:00
parent 1a12e0db0c
commit bc6ad699fc
20 changed files with 536 additions and 9974 deletions

View File

@ -9,9 +9,9 @@ import { template } from '../../services/Template.js'
import { Challenge } from '../../services/Challenge.js'
export class SearchCommand extends Command {
static paths = [['search']]
public static override paths = [['search']]
static usage = {
public static override usage = {
description: 'Search challenges in the programming language specified.'
}
@ -26,7 +26,7 @@ export class SearchCommand extends Command {
validator: typanion.isString()
})
async execute(): Promise<number> {
public async execute(): Promise<number> {
try {
await template.verifySupportedProgrammingLanguage(
this.programmingLanguage