Skip to content

Commit 4783066

Browse files
authored
Removes "(experimental)" label (#330)
1 parent da10e25 commit 4783066

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NewCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function configure()
5151
->addOption('breeze', null, InputOption::VALUE_NONE, 'Installs the Laravel Breeze scaffolding')
5252
->addOption('jet', null, InputOption::VALUE_NONE, 'Installs the Laravel Jetstream scaffolding')
5353
->addOption('dark', null, InputOption::VALUE_NONE, 'Indicate whether Breeze or Jetstream should be scaffolded with dark mode support')
54-
->addOption('typescript', null, InputOption::VALUE_NONE, 'Indicate whether Breeze should be scaffolded with TypeScript support (Experimental)')
54+
->addOption('typescript', null, InputOption::VALUE_NONE, 'Indicate whether Breeze should be scaffolded with TypeScript support')
5555
->addOption('ssr', null, InputOption::VALUE_NONE, 'Indicate whether Breeze or Jetstream should be scaffolded with Inertia SSR support')
5656
->addOption('api', null, InputOption::VALUE_NONE, 'Indicates whether Jetstream should be scaffolded with API support')
5757
->addOption('teams', null, InputOption::VALUE_NONE, 'Indicates whether Jetstream should be scaffolded with team support')
@@ -499,7 +499,7 @@ protected function promptForBreezeOptions(InputInterface $input)
499499
options: [
500500
'dark' => 'Dark mode',
501501
'ssr' => 'Inertia SSR',
502-
'typescript' => 'TypeScript (experimental)',
502+
'typescript' => 'TypeScript',
503503
],
504504
default: array_filter([
505505
$input->getOption('dark') ? 'dark' : null,

0 commit comments

Comments
 (0)