From fd377fad584e33649ed1940109c9acd2d8f513f6 Mon Sep 17 00:00:00 2001 From: Jakub Romanczyk Date: Wed, 3 Apr 2024 23:03:00 +0200 Subject: [PATCH] feat: update types for commands --- packages/repack/commands.d.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/repack/commands.d.ts b/packages/repack/commands.d.ts index 4a9ed223c..6ea192c39 100644 --- a/packages/repack/commands.d.ts +++ b/packages/repack/commands.d.ts @@ -1,4 +1,16 @@ const commands: [ + { + name: 'bundle'; + description: string; + options: Array; + func: typeof import('./dist/commands/bundle').bundle; + }, + { + name: 'start'; + description: string; + options: Array; + func: typeof import('./dist/commands/start').start; + }, { name: 'webpack-bundle'; description: string; @@ -10,6 +22,6 @@ const commands: [ description: string; options: Array; func: typeof import('./dist/commands/start').start; - } + }, ]; export default commands;