forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remove-static-files.js
executable file
·63 lines (53 loc) · 2.44 KB
/
remove-static-files.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env node
// [start-readme]
//
// This script removes the static GraphQL, REST, and webhook files for any deprecated GHES versions.
//
// [end-readme]
import fs from 'fs'
import path from 'path'
import rimraf from 'rimraf'
import walk from 'walk-sync'
import { allVersions } from '../../lib/all-versions.js'
import { deprecated } from '../../lib/enterprise-server-releases.js'
const graphqlDataDir = path.join(process.cwd(), 'data/graphql')
const webhooksStaticDir = path.join(process.cwd(), 'src/webhooks/data')
const graphqlStaticDir = path.join(process.cwd(), 'src/graphql/data')
const restDecoratedDir = path.join(process.cwd(), 'src/rest/data')
const ghesReleaseNotesDir = 'data/release-notes/enterprise-server'
const supportedEnterpriseVersions = Object.values(allVersions).filter(
(v) => v.plan === 'enterprise-server'
)
// GHES release notes
const deprecatedVersionsHyphenated = deprecated.map((v) => v.replace(/\./g, '-'))
walk(ghesReleaseNotesDir)
// Only directories end with a /
.filter((file) => file.endsWith('/'))
// Check if the directory name contains a deprecated GHES version
.filter((dir) => deprecatedVersionsHyphenated.some((version) => dir.includes(version)))
// Remove the directory
.map((dir) => rimraf.sync(path.join(ghesReleaseNotesDir, dir)))
// webhooks and GraphQL
const supportedMiscVersions = supportedEnterpriseVersions.map((v) => v.miscVersionName)
// The miscBaseName is the same for all GHES versions (currently `ghes-`), so we can just grab the first one
const miscBaseName = supportedEnterpriseVersions.map((v) => v.miscBaseName)[0]
;[graphqlDataDir, graphqlStaticDir, webhooksStaticDir].forEach((dir) => {
removeFiles(dir, miscBaseName, supportedMiscVersions)
})
// REST
const supportedOpenApiVersions = supportedEnterpriseVersions.map((v) => v.openApiVersionName)
// The openApiBaseName is the same for all GHES versions (currently `ghes-`), so we can just grab the first one
const openApiBaseName = supportedEnterpriseVersions.map((v) => v.openApiBaseName)[0]
;[restDecoratedDir].forEach((dir) => {
removeFiles(dir, openApiBaseName, supportedOpenApiVersions)
})
function removeFiles(dir, baseName, supportedVersions) {
fs.readdirSync(dir)
.filter((file) => file.includes(baseName))
.filter((file) => supportedVersions.every((version) => !file.includes(version)))
.forEach((file) => {
const fullPath = path.join(dir, file)
console.log(`removing ${fullPath}`)
rimraf.sync(fullPath)
})
}