Skip to content

Commit 101b043

Browse files
authored
remove pnpm installer option (#44)
1 parent 265e9af commit 101b043

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Drivers/Electron/Commands/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class InstallCommand extends Command
2525
protected $signature = 'native:install
2626
{--force : Overwrite existing files by default}
2727
{--publish : Publish the Electron project to your project\'s root}
28-
{--installer=npm : The package installer to use: npm, yarn or pnpm}';
28+
{--installer=npm : The package installer to use: npm or yarn}';
2929

3030
public function handle(): void
3131
{

src/Drivers/Electron/Traits/ExecuteCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,10 @@ protected function getCommandArrays(string $type = 'install'): array
6060
'install' => [
6161
'npm' => 'npm install',
6262
'yarn' => 'yarn',
63-
'pnpm' => 'pnpm install',
6463
],
6564
'dev' => [
6665
'npm' => 'npm run dev',
6766
'yarn' => 'yarn dev',
68-
'pnpm' => 'pnpm run dev',
6967
],
7068
];
7169

0 commit comments

Comments
 (0)