# HG changeset patch
# User luka
# Date 1755220165 14400
# Node ID a2a3059de103e2549147a3f6bad7c18693fe39c5
# Parent 90e38de8f2ba5607b5105ac23fb48c469dd2c579
Updates to some styles and general automation of creation
diff -r 90e38de8f2ba -r a2a3059de103 composer.json
--- a/composer.json Wed Aug 13 22:17:20 2025 -0400
+++ b/composer.json Thu Aug 14 21:09:25 2025 -0400
@@ -1,6 +1,7 @@
{
- "name": "wizzard/auth",
+ "name": "wizard/auth",
"description": "Minimal Laravel authentication scaffolding with Blade and Bootstrap.",
+ "version": "1.0.0",
"keywords": ["wizard", "auth"],
"license": "MIT",
"authors": [
@@ -22,7 +23,7 @@
},
"autoload": {
"psr-4": {
- "Laravel\\Breeze\\": "src/"
+ "Wizard\\Auth\\": "src/"
}
},
"extra": {
@@ -35,6 +36,6 @@
"config": {
"sort-packages": true
},
- "minimum-stability": "dev",
+ "minimum-stability": "stable",
"prefer-stable": true
}
diff -r 90e38de8f2ba -r a2a3059de103 src/Console/InstallsBladeStack.php
--- a/src/Console/InstallsBladeStack.php Wed Aug 13 22:17:20 2025 -0400
+++ b/src/Console/InstallsBladeStack.php Thu Aug 14 21:09:25 2025 -0400
@@ -34,15 +34,6 @@
(new Filesystem)->ensureDirectoryExists(resource_path('views'));
(new Filesystem)->copyDirectory(__DIR__.'/../../stubs/default/resources/views', resource_path('views'));
- if (! $this->option('dark')) {
- $this->removeDarkClasses((new Finder)
- ->in(resource_path('views'))
- ->name('*.blade.php')
- ->notPath('livewire/welcome/navigation.blade.php')
- ->notName('welcome.blade.php')
- );
- }
-
// Components...
(new Filesystem)->ensureDirectoryExists(app_path('View/Components'));
(new Filesystem)->copyDirectory(__DIR__.'/../../stubs/default/app/View/Components', app_path('View/Components'));
@@ -60,26 +51,7 @@
$this->replaceInFile('/home', '/dashboard', resource_path('views/welcome.blade.php'));
$this->replaceInFile('Home', 'Dashboard', resource_path('views/welcome.blade.php'));
- // Tailwind / Vite...
- copy(__DIR__.'/../../stubs/default/tailwind.config.js', base_path('tailwind.config.js'));
- copy(__DIR__.'/../../stubs/default/postcss.config.js', base_path('postcss.config.js'));
- copy(__DIR__.'/../../stubs/default/vite.config.js', base_path('vite.config.js'));
- copy(__DIR__.'/../../stubs/default/resources/css/app.css', resource_path('css/app.css'));
- copy(__DIR__.'/../../stubs/default/resources/js/app.js', resource_path('js/app.js'));
-
- $this->components->info('Installing and building Node dependencies.');
-
- if (file_exists(base_path('pnpm-lock.yaml'))) {
- $this->runCommands(['pnpm install', 'pnpm run build']);
- } elseif (file_exists(base_path('yarn.lock'))) {
- $this->runCommands(['yarn install', 'yarn run build']);
- } elseif (file_exists(base_path('bun.lock')) || file_exists(base_path('bun.lockb'))) {
- $this->runCommands(['bun install', 'bun run build']);
- } elseif (file_exists(base_path('deno.lock'))) {
- $this->runCommands(['deno install', 'deno task build']);
- } else {
- $this->runCommands(['npm install', 'npm run build']);
- }
+ $this->runCommands(['npm install', 'npm run build']);
$this->line('');
$this->components->info('Breeze scaffolding installed successfully.');
diff -r 90e38de8f2ba -r a2a3059de103 stubs/default/resources/views/auth/register.blade.php
--- a/stubs/default/resources/views/auth/register.blade.php Wed Aug 13 22:17:20 2025 -0400
+++ b/stubs/default/resources/views/auth/register.blade.php Thu Aug 14 21:09:25 2025 -0400
@@ -44,9 +44,9 @@
{{ __('Already registered?') }}
-