This repository has been archived by the owner on Feb 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
gulpfile.mjs
211 lines (182 loc) · 5.09 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-present eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
import gulp from "gulp";
import argparse from "argparse";
import merge from "merge-stream";
import zip from "gulp-vinyl-zip";
import del from "del";
import * as tasks from "./build/tasks/index.mjs";
import * as config from "./build/config/index.mjs";
import * as configParser from "./build/configParser.mjs";
import * as gitUtils from "./build/utils/git.mjs";
import url from "url";
let argumentParser = new argparse.ArgumentParser({
description: "Build the extension"
});
argumentParser.addArgument(
["-t", "--target"],
{choices: ["chrome", "firefox"]}
);
argumentParser.addArgument(
["-c", "--channel"],
{
choices: ["development", "release"],
defaultValue: "release"
}
);
argumentParser.addArgument(["-b", "--build-num"]);
argumentParser.addArgument("--config");
argumentParser.addArgument(["-m", "--manifest"]);
let args = argumentParser.parseKnownArgs()[0];
let targetDir = `devenv.${args.target}`;
async function getBuildSteps(options)
{
let translations = options.target == "chrome" ?
tasks.chromeTranslations :
tasks.translations;
let buildSteps = [];
let addonName = `${options.basename}${options.target}`;
if (options.isDevenv)
{
buildSteps.push(
tasks.addDevEnvVersion(),
await tasks.addTestsPage({scripts: options.tests.scripts, addonName})
);
}
buildSteps.push(
tasks.mapping(options.mapping),
tasks.webpack({
webpackInfo: options.webpackInfo,
addonName,
addonVersion: options.version,
sourceMapType: options.sourceMapType
}),
tasks.createManifest(options.manifest),
translations(options.translations, options.manifest)
);
return buildSteps;
}
async function getBuildOptions(isDevenv, isSource)
{
if (!isSource && !args.target)
argumentParser.error("Argument \"-t/--target\" is required");
let opts = {
isDevenv,
target: args.target,
channel: args.channel,
archiveType: args.target == "chrome" ? ".zip" : ".xpi"
};
opts.sourceMapType = opts.target == "chrome" ?
isDevenv == true ? "inline-cheap-source-maps" : "none" :
"source-maps";
if (args.config)
configParser.setConfig(await import(url.pathToFileURL(args.config)));
else
configParser.setConfig(config);
let configName;
if (isSource)
configName = "base";
else if (isDevenv && configParser.hasTarget(`${opts.target}Dev`))
configName = `${opts.target}Dev`;
else
configName = opts.target;
opts.webpackInfo = configParser.getSection(configName, "webpack");
opts.mapping = configParser.getSection(configName, "mapping");
opts.tests = configParser.getSection(configName, "tests");
opts.basename = configParser.getSection(configName, "basename");
opts.version = configParser.getSection(configName, "version");
opts.translations = configParser.getSection(configName, "translations");
if (isDevenv)
{
opts.output = gulp.dest(targetDir);
}
else
{
if (opts.channel == "development")
{
opts.version = args["build_num"] ?
opts.version.concat(".", args["build_num"]) :
opts.version.concat(".", await gitUtils.getBuildnum());
}
opts.output = zip.dest(
`${opts.basename}${opts.target}-${opts.version}${opts.archiveType}`
);
}
opts.manifest = await tasks.getManifestContent({
target: opts.target,
version: opts.version,
channel: opts.channel,
path: args.manifest
});
return opts;
}
async function buildDevenv()
{
let options = await getBuildOptions(true);
return merge(await getBuildSteps(options))
.pipe(options.output);
}
async function buildPacked()
{
let options = await getBuildOptions(false);
return merge(await getBuildSteps(options))
.pipe(options.output);
}
function cleanDir()
{
return del(targetDir);
}
export let devenv = gulp.series(
cleanDir,
tasks.buildUI,
buildDevenv
);
export let build = gulp.series(
tasks.buildUI,
buildPacked
);
export async function source()
{
let options = await getBuildOptions(false, true);
return tasks.sourceDistribution(`${options.basename}-${options.version}`);
}
function startWatch()
{
gulp.watch(
[
"*.js",
"*.html",
"qunit/**",
"lib/*",
"ext/*",
"adblockpluscore/lib/*",
"adblockplusui/*.js",
"!gulpfile.js"
],
{
ignoreInitial: false
},
gulp.series(
cleanDir,
buildDevenv
)
);
}
export let watch = gulp.series(
tasks.buildUI,
startWatch
);