mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
fix(nuxi): only reload for top level dirs (#4912)
This commit is contained in:
parent
8f8b67fca7
commit
2886dfdaea
@ -82,25 +82,28 @@ export default defineNuxtCommand({
|
|||||||
// TODO: Watcher service, modules, and requireTree
|
// TODO: Watcher service, modules, and requireTree
|
||||||
const dLoad = debounce(load)
|
const dLoad = debounce(load)
|
||||||
const watcher = chokidar.watch([rootDir], { ignoreInitial: true, depth: 1 })
|
const watcher = chokidar.watch([rootDir], { ignoreInitial: true, depth: 1 })
|
||||||
watcher.on('all', (event, file) => {
|
watcher.on('all', (event, _file) => {
|
||||||
if (!currentNuxt) { return }
|
if (!currentNuxt) { return }
|
||||||
if (normalize(file).startsWith(withTrailingSlash(normalize(currentNuxt.options.buildDir)))) { return }
|
const file = normalize(_file)
|
||||||
|
const buildDir = withTrailingSlash(normalize(currentNuxt.options.buildDir))
|
||||||
|
if (file.startsWith(buildDir)) { return }
|
||||||
|
const relativePath = relative(rootDir, file)
|
||||||
if (file.match(/(nuxt\.config\.(js|ts|mjs|cjs)|\.nuxtignore|\.env|\.nuxtrc)$/)) {
|
if (file.match(/(nuxt\.config\.(js|ts|mjs|cjs)|\.nuxtignore|\.env|\.nuxtrc)$/)) {
|
||||||
dLoad(true, `${relative(rootDir, file)} updated`)
|
dLoad(true, `${relativePath} updated`)
|
||||||
}
|
}
|
||||||
|
|
||||||
const isDirChange = ['addDir', 'unlinkDir'].includes(event)
|
const isDirChange = ['addDir', 'unlinkDir'].includes(event)
|
||||||
const isFileChange = ['add', 'unlink'].includes(event)
|
const isFileChange = ['add', 'unlink'].includes(event)
|
||||||
const reloadDirs = [currentNuxt.options.dir.pages, 'components', 'composables']
|
const reloadDirs = [currentNuxt.options.dir.pages, 'components', 'composables']
|
||||||
|
.map(d => resolve(currentNuxt.options.srcDir, d))
|
||||||
|
|
||||||
if (isDirChange) {
|
if (isDirChange) {
|
||||||
const dir = reloadDirs.find(dir => file.endsWith(dir))
|
if (reloadDirs.includes(file)) {
|
||||||
if (dir) {
|
dLoad(true, `Directory \`${relativePath}/\` ${event === 'addDir' ? 'created' : 'removed'}`)
|
||||||
dLoad(true, `Directory \`${dir}/\` ${event === 'addDir' ? 'created' : 'removed'}`)
|
|
||||||
}
|
}
|
||||||
} else if (isFileChange) {
|
} else if (isFileChange) {
|
||||||
if (file.match(/(app|error)\.(js|ts|mjs|jsx|tsx|vue)$/)) {
|
if (file.match(/(app|error)\.(js|ts|mjs|jsx|tsx|vue)$/)) {
|
||||||
dLoad(true, `\`${relative(rootDir, file)}\` ${event === 'add' ? 'created' : 'removed'}`)
|
dLoad(true, `\`${relativePath}\` ${event === 'add' ? 'created' : 'removed'}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user