mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
add a link to the docs describing JIT watch mode (#4332)
This will help people, when the process looks like it is "hanging", while in fact it is watching for changes.
This commit is contained in:
parent
99f4c5f350
commit
87a4516871
@ -21,6 +21,7 @@ import resolveConfig from '../../../resolveConfig'
|
||||
import corePlugins from '../corePlugins'
|
||||
import isPlainObject from '../../util/isPlainObject'
|
||||
import escapeClassName from '../../util/escapeClassName'
|
||||
import log from '../../util/log'
|
||||
|
||||
import nameClass from '../../util/nameClass'
|
||||
import { coerceValue } from '../../util/pluginUtils'
|
||||
@ -286,6 +287,11 @@ function rebootWatcher(context) {
|
||||
(env.TAILWIND_MODE === undefined && env.NODE_ENV === 'development')
|
||||
) {
|
||||
Promise.resolve(context.watcher ? context.watcher.close() : null).then(() => {
|
||||
log.info([
|
||||
'Tailwind CSS is watching for changes...',
|
||||
'https://tailwindcss.com/docs/just-in-time-mode#watch-mode-and-one-off-builds',
|
||||
])
|
||||
|
||||
context.watcher = chokidar.watch([...context.candidateFiles, ...context.configDependencies], {
|
||||
ignoreInitial: true,
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user