From 099c8c40d66ff5df6e048a026b9983e05ca48523 Mon Sep 17 00:00:00 2001 From: Maxime Garcia Date: Fri, 10 Jun 2022 14:06:33 +0200 Subject: [PATCH 1/2] Fix: Wrong import of CorePluginList type file --- types/config.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/config.d.ts b/types/config.d.ts index b04e16b1cd6d..d80d42e00ffc 100644 --- a/types/config.d.ts +++ b/types/config.d.ts @@ -1,4 +1,4 @@ -import type { CorePluginList } from './generated/CorePluginList' +import type { CorePluginList } from './generated/corePluginList' import type { DefaultColors } from './generated/colors' // Helpers From 45560b618a37b351fc764c94045ea0039b81feae Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 10 Jun 2022 09:52:55 -0400 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6bd6023dac0..136efcafce5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Ensure `\` is a valid arbitrary variant token ([#8576](https://github.com/tailwindlabs/tailwindcss/pull/8576)) - Enable `postcss-import` in the CLI by default in watch mode ([#8574](https://github.com/tailwindlabs/tailwindcss/pull/8574), [#8580](https://github.com/tailwindlabs/tailwindcss/pull/8580)) +- Fix casing of import of `corePluginList` type definition ([#8587](https://github.com/tailwindlabs/tailwindcss/pull/8587)) ## [3.1.1] - 2022-06-09