mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 10:54:49 +00:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
import path from 'path'
|
|
import fs from 'fs-extra'
|
|
import ignore from 'ignore'
|
|
|
|
export default class Ignore {
|
|
constructor (options) {
|
|
this.rootDir = options.rootDir
|
|
this.ignoreOptions = options.ignoreOptions
|
|
this.ignoreArray = options.ignoreArray
|
|
this.addIgnoresRules()
|
|
}
|
|
|
|
static get IGNORE_FILENAME () {
|
|
return '.nuxtignore'
|
|
}
|
|
|
|
findIgnoreFile () {
|
|
if (!this.ignoreFile) {
|
|
const ignoreFile = path.resolve(this.rootDir, Ignore.IGNORE_FILENAME)
|
|
if (fs.existsSync(ignoreFile) && fs.statSync(ignoreFile).isFile()) {
|
|
this.ignoreFile = ignoreFile
|
|
this.ignore = ignore(this.ignoreOptions)
|
|
}
|
|
}
|
|
return this.ignoreFile
|
|
}
|
|
|
|
readIgnoreFile () {
|
|
if (this.findIgnoreFile()) {
|
|
return fs.readFileSync(this.ignoreFile, 'utf8')
|
|
}
|
|
}
|
|
|
|
addIgnoresRules () {
|
|
const content = this.readIgnoreFile()
|
|
if (content) {
|
|
this.ignore.add(content)
|
|
}
|
|
if (this.ignoreArray && this.ignoreArray.length > 0) {
|
|
if (!this.ignore) {
|
|
this.ignore = ignore(this.ignoreOptions)
|
|
}
|
|
this.ignore.add(this.ignoreArray)
|
|
}
|
|
}
|
|
|
|
filter (paths) {
|
|
if (this.ignore) {
|
|
return this.ignore.filter([].concat(paths || []))
|
|
}
|
|
return paths
|
|
}
|
|
|
|
reload () {
|
|
delete this.ignore
|
|
delete this.ignoreFile
|
|
this.addIgnoresRules()
|
|
}
|
|
}
|