Skip to content

Commit

Permalink
bump TailwindCSS to 3.1 (#156)
Browse files Browse the repository at this point in the history
add new FirstParty TypeScript types to tailwind config
  • Loading branch information
geisi authored Jun 13, 2022
1 parent 715ff9f commit 98c79a6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Console/InstallsBladeStack.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ protected function installBladeStack()
'alpinejs' => '^3.4.2',
'autoprefixer' => '^10.4.2',
'postcss' => '^8.4.6',
'tailwindcss' => '^3.0.18',
'tailwindcss' => '^3.1.0',
] + $packages;
});

Expand Down
4 changes: 2 additions & 2 deletions src/Console/InstallsInertiaStacks.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function installInertiaVueStack()
'@vue/compiler-sfc' => '^3.2.31',
'autoprefixer' => '^10.4.2',
'postcss' => '^8.4.6',
'tailwindcss' => '^3.0.18',
'tailwindcss' => '^3.1.0',
'vue' => '^3.2.31',
'vue-loader' => '^17.0.0',
] + $packages;
Expand Down Expand Up @@ -133,7 +133,7 @@ protected function installInertiaReactStack()
'@tailwindcss/forms' => '^0.4.0',
'autoprefixer' => '^10.4.2',
'postcss' => '^8.4.6',
'tailwindcss' => '^3.0.18',
'tailwindcss' => '^3.1.0',
'react' => '^17.0.2',
'react-dom' => '^17.0.2',
'@babel/preset-react' => '^7.16.7',
Expand Down
1 change: 1 addition & 0 deletions stubs/default/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');

module.exports = {
Expand Down
1 change: 1 addition & 0 deletions stubs/inertia-common/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');

module.exports = {
Expand Down

0 comments on commit 98c79a6

Please sign in to comment.