Skip to content

Commit 44c6cec

Browse files
committed
fix(build): remove uninstalled @InQuirer packages from bundle config
Remove @inquirer/checkbox, @inquirer/core, and @inquirer/prompts from the bundle configuration as they are not in devDependencies. These packages were causing build failures with 'Failed to bundle' errors. Only bundle @InQuirer packages that are actually installed: - confirm, input, password, search, select
1 parent 0ca9971 commit 44c6cec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/build-externals/config.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ export const scopedPackages = [
4343
{
4444
scope: '@inquirer',
4545
packages: [
46-
'checkbox',
46+
// Only bundle packages that are in devDependencies
4747
'confirm',
48-
'core',
4948
'input',
5049
'password',
51-
'prompts',
5250
'search',
5351
'select',
5452
],

0 commit comments

Comments
 (0)