forked from mozilla-mobile/firefox-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
51 lines (46 loc) · 1.75 KB
/
webpack.config.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
const glob = require("glob");
const path = require("path");
const AllFramesAtDocumentStart = glob.sync("./Client/Frontend/UserContent/UserScripts/AllFrames/AtDocumentStart/*.js");
const AllFramesAtDocumentEnd = glob.sync("./Client/Frontend/UserContent/UserScripts/AllFrames/AtDocumentEnd/*.js");
const MainFrameAtDocumentStart = glob.sync("./Client/Frontend/UserContent/UserScripts/MainFrame/AtDocumentStart/*.js");
const MainFrameAtDocumentEnd = glob.sync("./Client/Frontend/UserContent/UserScripts/MainFrame/AtDocumentEnd/*.js");
const WebcompatAllFramesAtDocumentStart = glob.sync("./Client/Frontend/UserContent/UserScripts/AllFrames/WebcompatAtDocumentStart/*.js");
// Ensure the first script loaded at document start is __firefox__.js
// since it defines the `window.__firefox__` global.
const needsFirefoxFile = {
AllFramesAtDocumentStart,
// PDF content does not execute user scripts designated to
// run at document start for some reason. So, we also need
// to include __firefox__.js for the document end scripts.
// ¯\_(ツ)_/¯
AllFramesAtDocumentEnd,
};
for (let [name, files] of Object.entries(needsFirefoxFile)) {
if (path.basename(files[0]) !== "__firefox__.js") {
throw `ERROR: __firefox__.js is expected to be the first script in ${name}.js`;
}
}
module.exports = {
mode: "production",
entry: {
AllFramesAtDocumentStart,
AllFramesAtDocumentEnd,
MainFrameAtDocumentStart,
MainFrameAtDocumentEnd,
WebcompatAllFramesAtDocumentStart,
},
// optimization: { minimize: false }, // use for debugging
output: {
filename: "[name].js",
path: path.resolve(__dirname, "Client/Assets")
},
module: {
rules: []
},
plugins: [],
resolve: {
fallback: {
url: require.resolve("page-metadata-parser")
}
}
};