Skip to content

Commit 36621f3

Browse files
change message when installing; running npm run dev twice errors
1 parent a37a1d6 commit 36621f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TailwindCssPresetServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ public function boot()
1313
TailwindCssPreset::install();
1414

1515
$command->info('Tailwind CSS scaffolding installed successfully.');
16-
$command->info('Please run "npm install && npm run dev && npm run dev" to compile your fresh scaffolding.');
16+
$command->info('Please run "npm install && npm run dev" to compile your fresh scaffolding.');
1717
});
1818

1919
PresetCommand::macro('tailwindcss-auth', function ($command) {
2020
TailwindCssPreset::installAuth();
2121

2222
$command->info('Tailwind CSS scaffolding with auth views installed successfully.');
23-
$command->info('Please run "npm install && npm run dev && npm run dev" to compile your fresh scaffolding.');
23+
$command->info('Please run "npm install && npm run dev" to compile your fresh scaffolding.');
2424
});
2525
}
2626
}

0 commit comments

Comments
 (0)