forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-updates-manifest.ts
executable file
·39 lines (28 loc) · 1.2 KB
/
build-updates-manifest.ts
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
/* eslint "no-sync": "warn" */
import * as fs from 'fs'
import * as path from 'path'
const updatesManifestPath = path.resolve(__dirname, '..', 'src/extension/updates.manifest.json')
interface Update {
version: string
update_link: string
}
function addVersionsToManifest(links: string[]): void {
const updatesManifest = JSON.parse(fs.readFileSync(updatesManifestPath, 'utf8'))
const updates: Update[] = []
for (const link of links) {
// `link` looks like gs://sourcegraph-for-firefox/sourcegraph_for_firefox-18.11.17.46-an+fx.xpi
const match = link.match(/_firefox-(.*?)-/)
if (!match) {
throw new Error(`could not get version from ${link}`)
}
const version = match[1]
updates.push({
version,
update_link: link.replace(/^gs:\/\//, 'https://storage.googleapis.com/'),
})
}
;(updatesManifest.addons['[email protected]'].updates as Update[]) = updates
fs.writeFileSync(updatesManifestPath, JSON.stringify(updatesManifest, null, 2), 'utf8')
}
const links = process.argv.slice(2).filter(l => !l.match(/latest.xpi$/) && !l.match(/updates.json$/))
addVersionsToManifest(links)