mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 01:53:55 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
52 lines
1.0 KiB
JavaScript
52 lines
1.0 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.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()
|
|
}
|
|
}
|
|
return this.ignoreFile
|
|
}
|
|
|
|
readIgnoreFile () {
|
|
if (this.findIgnoreFile()) {
|
|
return fs.readFileSync(this.ignoreFile, 'utf8')
|
|
}
|
|
}
|
|
|
|
addIgnoresRules () {
|
|
const content = this.readIgnoreFile()
|
|
if (content) {
|
|
this.ignore.add(content)
|
|
}
|
|
}
|
|
|
|
filter (paths) {
|
|
if (this.ignore) {
|
|
return this.ignore.filter([].concat(paths || []))
|
|
}
|
|
return paths
|
|
}
|
|
|
|
reload () {
|
|
delete this.ignore
|
|
delete this.ignoreFile
|
|
this.addIgnoresRules()
|
|
}
|
|
}
|