We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17da38 commit f3a5bdcCopy full SHA for f3a5bdc
script/new-versioning/update-frontmatter.js
@@ -10,7 +10,7 @@ const dirsToProcess = ['content', 'translations']
10
const allFiles = flatten(dirsToProcess.map(dir => {
11
return walk(path.join(process.cwd(), dir), { includeBasePath: true, directories: false })
12
.filter(file => !file.endsWith('README.md'))
13
- .filter(file => !(file.endsWith('LICENSE') || file.endsWith('LICENSE-CODE'))
+ .filter(file => !(file.endsWith('LICENSE') || file.endsWith('LICENSE-CODE')))
14
// we only want to process frontmatter in content files in translations, so skip data files
15
// this is very brittle but works well enough for this script
16
// (note data files are updated in script/new-versioning/update-content.js)
0 commit comments