Skip to content

Commit 2b0887a

Browse files
authored
bump TailwindCSS to 3.1 (#1066)
add new FirstParty TypeScript types to tailwind config
1 parent 353644e commit 2b0887a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/Console/InstallCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ protected function installLivewireStack()
142142
'@tailwindcss/forms' => '^0.5.0',
143143
'@tailwindcss/typography' => '^0.5.0',
144144
'alpinejs' => '^3.0.6',
145-
'tailwindcss' => '^3.0.0',
145+
'tailwindcss' => '^3.1.0',
146146
] + $packages;
147147
});
148148

@@ -302,7 +302,7 @@ protected function installInertiaStack()
302302
'@inertiajs/progress' => '^0.2.7',
303303
'@tailwindcss/forms' => '^0.5.0',
304304
'@tailwindcss/typography' => '^0.5.2',
305-
'tailwindcss' => '^3.0.0',
305+
'tailwindcss' => '^3.1.0',
306306
'vue' => '^3.2.31',
307307
'@vue/compiler-sfc' => '^3.2.31',
308308
'vue-loader' => '^17.0.0',

stubs/inertia/tailwind.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('tailwindcss').Config} */
12
const defaultTheme = require('tailwindcss/defaultTheme');
23

34
module.exports = {

stubs/livewire/tailwind.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('tailwindcss').Config} */
12
const defaultTheme = require('tailwindcss/defaultTheme');
23

34
module.exports = {

0 commit comments

Comments
 (0)