Skip to content

Commit 57beaa7

Browse files
update readme to show 5.5/5.6 support, ensure bootstrap 4.0 is removed (Laravel 5.6)
1 parent c30600f commit 57beaa7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Laravel 5.5.x Frontend preset for Tailwind CSS
1+
# Laravel 5.5.x/5.6.x Frontend preset for Tailwind CSS
22

33
A Laravel front-end scaffolding preset for [Tailwind CSS](https://tailwindcss.com) - a Utility-First CSS Framework for Rapid UI Development.
44

5-
*Current version:* **Tailwind CSS 0.4.0**
5+
*Current version:* **Tailwind CSS 0.4.1**
66

77
## Usage
88

9-
1. Fresh install Laravel 5.5.x and cd to your app.
10-
2. Install this preset via `composer require laravel-frontend-presets/tailwindcss`. Laravel 5.5.x will automatically discover this package. No need to register the service provider.
9+
1. Fresh install Laravel 5.5.x or 5.6.x and cd to your app.
10+
2. Install this preset via `composer require laravel-frontend-presets/tailwindcss`. Laravel >= 5.5.0 will automatically discover this package. No need to register the service provider.
1111
3. Use `php artisan preset tailwindcss` for the basic Tailwind CSS preset OR use `php artisan preset tailwindcss-auth` for the basic preset, auth route entry and Tailwind CSS auth views in one go. (NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in `routes/web.php`)
1212
4. `npm install`
1313
5. `npm run dev`

src/TailwindCssPreset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected static function updatePackageArray(array $packages)
3030
'tailwindcss' => '^0.4.0',
3131
'glob-all' => '*',
3232
'purgecss-webpack-plugin' => '*'
33-
] + Arr::except($packages, ['bootstrap-sass', 'jquery']);
33+
] + Arr::except($packages, ['bootstrap', 'bootstrap-sass', 'jquery']);
3434
}
3535

3636
protected static function updateStyles()

0 commit comments

Comments
 (0)