We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4718480 commit e7bd9cbCopy full SHA for e7bd9cb
1 file changed
script/content-migrations/use-short-versions.js
@@ -13,7 +13,6 @@ const dryRun = ['-d', '--dry-run'].includes(process.argv[2])
13
const walkFiles = (pathToWalk, ext) => {
14
return walk(path.posix.join(process.cwd(), pathToWalk), { includeBasePath: true, directories: false })
15
.filter(file => file.endsWith(ext) && !file.endsWith('README.md'))
16
- .filter(file => !file.includes('/early-access/')) // ignore EA for now
17
}
18
19
const markdownFiles = walkFiles('content', '.md').concat(walkFiles('data', '.md'))
0 commit comments