always populate the file modified map

This commit is contained in:
Brad Cornes 2021-05-26 18:20:29 +01:00
parent e119fc9745
commit 8cd60171e0

View File

@ -478,9 +478,8 @@ export function getContext(
getTailwindConfig
) {
let sourcePath = result.opts.from
let [tailwindConfig, userConfigPath, tailwindConfigHash, configDependencies] = getTailwindConfig(
configOrPath
)
let [tailwindConfig, userConfigPath, tailwindConfigHash, configDependencies] =
getTailwindConfig(configOrPath)
let isConfigFile = userConfigPath !== null
let contextDependencies = new Set(configDependencies)
@ -582,10 +581,7 @@ export function getContext(
stylesheetCache: null, // Hit
}
if (!existingContext) {
// If we didn't have an existing modified map then populate it now.
trackModified([...contextDependencies], context)
}
trackModified([...contextDependencies], context)
// ---