-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathgulpfile.mjs
112 lines (106 loc) · 2.87 KB
/
gulpfile.mjs
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// @ts-check
import fs from 'fs-extra'
import gulp from 'gulp'
import download from 'gulp-download-stream'
import unzip from 'gulp-unzip'
import rename from 'gulp-rename'
import gulpif from 'gulp-if'
import replace from 'gulp-replace'
import fetch from 'node-fetch'
import * as cheerio from 'cheerio'
import { deleteAsync } from 'del'
const color = 'rgba(135, 135, 137, 0.9)'
// https://hg.mozilla.org/mozilla-central/file/tip/devtools/client
export const downloadGeckoZip = () => {
return download({
file: 'gecko.zip',
url: 'https://hg.mozilla.org/mozilla-central/archive/tip.zip/devtools/client/',
}).pipe(gulp.dest('.'))
}
export const downloadL10nList = async (done) => {
const html = await fetch('https://hg.mozilla.org/l10n-central').then((res) =>
res.text()
)
const $ = cheerio.load(html)
const locales = $('table')
.first()
.find('td:first-child')
.slice(1)
.map((i, el) => $(el).text().trim())
.toArray()
console.log(locales)
fs.writeJsonSync('./vendor/l10n.json', locales)
done()
}
export const downloadL10nContent = async (done) => {
const locales = fs.readJsonSync('./vendor/l10n.json')
for (const locale of locales) {
const res = await fetch(
`https://hg.mozilla.org/l10n-central/${locale}/raw-file/tip/devtools/client/jsonview.properties`
)
if (!res.ok) {
console.log(locale, 'not found')
continue
}
const text = await res.text()
fs.writeFileSync(`./vendor/l10n/${locale}.properties`, text)
}
done()
}
export const gecko = gulp.series(
() => {
return deleteAsync('./vendor/gecko')
},
() => {
return gulp
.src('./gecko.zip')
.pipe(unzip())
.pipe(
rename((obj) => {
obj.dirname = obj.dirname.replace(/mozilla-central-.*?\//, 'gecko/')
})
)
.pipe(
replace(
// devtools/client/shared/components/reps/reps/custom-formatter.js
`require("resource://devtools/shared/flags.js")`,
'{ testing: false }'
)
)
.pipe(
replace(
// devtools/client/shared/components/Tree.js
`require("resource://devtools/shared/l10n.js")`,
'{}'
)
)
.pipe(
replace(
new RegExp('resource://', 'g'),
process.cwd() + '/vendor/gecko/'
)
)
.pipe(
replace(
new RegExp('chrome://devtools/skin', 'g'),
'devtools/client/themes'
)
)
.pipe(
replace(new RegExp('chrome://devtools/content', 'g'), 'devtools/client')
)
.pipe(
gulpif(
(file) => file.path.endsWith('arrow.svg'),
replace(/fill="(.*?)"/, `fill="${color}"`)
)
)
.pipe(
gulpif(
(file) => file.path.endsWith('filter-small.svg'),
replace(/<svg/, `<svg fill="${color}"`)
)
)
.pipe(gulp.dest('./vendor'))
}
)