зеркало из https://github.com/github/docs.git
26 строки
737 B
JavaScript
Executable File
26 строки
737 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// [start-readme]
|
|
//
|
|
// An [automated test](/tests/extraneous-translation-files.js) checks for files in the `translations/` directory
|
|
// that do not have an equivalent English file in the `content/` directory, and fails if it finds extraneous files.
|
|
// When the test fails, a human needs to run this script to remove the files.
|
|
//
|
|
// [end-readme]
|
|
|
|
import fs from 'fs'
|
|
import findExtraneousFiles from './helpers/find-extraneous-translation-files.js'
|
|
|
|
main()
|
|
|
|
async function main() {
|
|
const files = findExtraneousFiles()
|
|
console.log(
|
|
`Found ${files.length} extraneous translation ${files.length === 1 ? 'file' : 'files'}\n\n`
|
|
)
|
|
files.forEach((file) => {
|
|
console.log(file)
|
|
fs.unlinkSync(file)
|
|
})
|
|
}
|