Promote defaultLineHeights and standardFontWeights from experimental to future

This commit is contained in:
Adam Wathan 2020-10-04 13:10:47 -04:00
parent d21ed209f8
commit 1067ccee10
2 changed files with 7 additions and 3 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Don't escape keyframe values ([#2432](https://github.com/tailwindlabs/tailwindcss/pull/2432))
- Add experimental `2xl` breakpoint ([#2468](https://github.com/tailwindlabs/tailwindcss/pull/2471))
- Add `col-span-full` and `row-span-full` ([#2471](https://github.com/tailwindlabs/tailwindcss/pull/2471))
- Promote `defaultLineHeights` and `standardFontWeights` from experimental to future
## [1.8.11] - 2020-10-06

View File

@ -3,15 +3,18 @@ import chalk from 'chalk'
import log from './util/log'
const featureFlags = {
future: ['removeDeprecatedGapUtilities', 'purgeLayersByDefault'],
future: [
'removeDeprecatedGapUtilities',
'purgeLayersByDefault',
'defaultLineHeights',
'standardFontWeights',
],
experimental: [
'uniformColorPalette',
'extendedSpacingScale',
'defaultLineHeights',
'extendedFontSizeScale',
'applyComplexClasses',
'darkModeVariant',
'standardFontWeights',
'additionalBreakpoint',
],
}