Skip to content

Commit b3db105

Browse files
committed
Don't log anything for people who have opted in to future features
1 parent a7e19ca commit b3db105

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/featureFlags.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,6 @@ export function issueFlagNotices(config) {
5858
return
5959
}
6060

61-
if (futureFlagsEnabled(config).length > 0) {
62-
const changes = futureFlagsEnabled(config)
63-
.map(s => chalk.cyan(s))
64-
.join(', ')
65-
66-
log.info([
67-
`You have opted-in to future-facing breaking changes: ${changes}`,
68-
'These changes are stable and will be the default behavior in the next major version of Tailwind.',
69-
])
70-
}
71-
7261
if (experimentalFlagsEnabled(config).length > 0) {
7362
const changes = experimentalFlagsEnabled(config)
7463
.map(s => chalk.yellow(s))

0 commit comments

Comments
 (0)