forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
move-unique-image-assets.js
executable file
·44 lines (38 loc) · 1.38 KB
/
move-unique-image-assets.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env node
import fs from 'fs'
import path from 'path'
import walk from 'walk-sync'
// iterate through enterprise images from most recent to oldest
// for each asset and move any images from /assets/enterprise,
// with file paths that don't already exist, to the /assets/images
// directory. Then the existing Markdown will just work.
async function main() {
const directories = [
path.join('assets/enterprise/3.0'),
path.join('assets/enterprise/github-ae'),
path.join('assets/enterprise/2.22'),
path.join('assets/enterprise/2.21'),
path.join('assets/enterprise/2.20'),
]
for (const directory of directories) {
const files = walk(path.join(process.cwd(), directory), {
includeBasePath: true,
directories: false,
})
for (const file of files) {
// get the /assets/images path from the enterprise asset path
const enterpriseRegex = /\/assets\/enterprise\/(2\.20|2\.21|2\.22|3\.0|github-ae)/
const existingFileToCompare = file.replace(enterpriseRegex, '')
if (!fs.existsSync(existingFileToCompare)) {
const newDirectoryName = path.dirname(existingFileToCompare)
if (!fs.existsSync(newDirectoryName)) {
fs.mkdirSync(newDirectoryName, { recursive: true })
}
fs.renameSync(file, existingFileToCompare)
}
}
}
}
main()
.catch(console.error)
.finally(() => console.log('Done!'))