File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Fix candidate extractor regression ([ #8558 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8558 ) )
13
13
- Split `::backdrop`` into separate defaults group ([ #8567 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8567 ) )
14
+ - Fix postcss plugin type ([ #8564 ] ( https://github.com/tailwindlabs/tailwindcss/pull/8564 ) )
14
15
15
16
## [ 3.1.0] - 2022-06-08
16
17
Original file line number Diff line number Diff line change 1
- export type { Config } from './config.d'
1
+ import { PluginCreator } from 'postcss'
2
+ import type { Config } from './config.d'
3
+
4
+ declare const plugin : PluginCreator < string | Config | { config : string | Config } >
5
+
6
+ export { Config }
7
+ export default plugin
You can’t perform that action at this time.
0 commit comments