1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Reorg LICENSE files to be more discoverable (#204)

* Reorg LICENSE files to be more discoverable

* add missing )
This commit is contained in:
Jeff McAffer
2020-10-07 15:11:49 -07:00
committed by GitHub
parent be3a96561b
commit 6da14f22d5
6 changed files with 407 additions and 407 deletions

View File

@@ -52,7 +52,7 @@ console.log(`Next oldest version: ${nextOldestVersion}\n`)
// gather content and data files
const contentFiles = walk(contentPath, { includeBasePath: true, directories: false })
.filter(file => file.endsWith('.md'))
.filter(file => !(file.endsWith('README.md') || file === 'LICENSE'))
.filter(file => !(file.endsWith('README.md') || file === 'LICENSE' || file === 'LICENSE-CODE'))
const dataFiles = walk(dataPath, { includeBasePath: true, directories: false })
.filter(file => file.includes('data/reusables') || file.includes('data/variables'))