mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
20 lines
588 B
JavaScript
20 lines
588 B
JavaScript
import defaultConfig from '../../stubs/defaultConfig.stub.js'
|
|
import { flagEnabled } from '../featureFlags'
|
|
|
|
export default function getAllConfigs(config) {
|
|
const configs = (config?.presets ?? [defaultConfig])
|
|
.slice()
|
|
.reverse()
|
|
.flatMap((preset) => getAllConfigs(preset instanceof Function ? preset() : preset))
|
|
|
|
const features = {
|
|
// Add experimental configs here...
|
|
}
|
|
|
|
const experimentals = Object.keys(features)
|
|
.filter((feature) => flagEnabled(config, feature))
|
|
.map((feature) => features[feature])
|
|
|
|
return [config, ...experimentals, ...configs]
|
|
}
|