|
|
|
@ -74,12 +74,7 @@ function createScriptTasks({ browserPlatforms, livereload }) { |
|
|
|
|
return { dev, test, testDev, prod }; |
|
|
|
|
|
|
|
|
|
function createTasksForBuildJsExtension({ taskPrefix, devMode, testing }) { |
|
|
|
|
const standardEntryPoints = [ |
|
|
|
|
'background', |
|
|
|
|
'ui', |
|
|
|
|
'phishing-detect', |
|
|
|
|
'content-script', |
|
|
|
|
]; |
|
|
|
|
const standardEntryPoints = ['background', 'ui', 'content-script']; |
|
|
|
|
const standardSubtask = createTask( |
|
|
|
|
`${taskPrefix}:standardEntryPoints`, |
|
|
|
|
createFactoredBuild({ |
|
|
|
@ -114,6 +109,11 @@ function createScriptTasks({ browserPlatforms, livereload }) { |
|
|
|
|
createTaskForBundleSentry({ devMode }), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
const phishingDetectSubtask = createTask( |
|
|
|
|
`${taskPrefix}:phishing-detect`, |
|
|
|
|
createTaskForBundlePhishingDetect({ devMode }), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// task for initiating browser livereload
|
|
|
|
|
const initiateLiveReload = async () => { |
|
|
|
|
if (devMode) { |
|
|
|
@ -136,6 +136,7 @@ function createScriptTasks({ browserPlatforms, livereload }) { |
|
|
|
|
contentscriptSubtask, |
|
|
|
|
disableConsoleSubtask, |
|
|
|
|
installSentrySubtask, |
|
|
|
|
phishingDetectSubtask, |
|
|
|
|
].map((subtask) => runInChildProcess(subtask)); |
|
|
|
|
// make a parent task that runs each task in a child thread
|
|
|
|
|
return composeParallel(initiateLiveReload, ...allSubtasks); |
|
|
|
@ -163,6 +164,17 @@ function createScriptTasks({ browserPlatforms, livereload }) { |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function createTaskForBundlePhishingDetect({ devMode }) { |
|
|
|
|
const label = 'phishing-detect'; |
|
|
|
|
return createNormalBundle({ |
|
|
|
|
label, |
|
|
|
|
entryFilepath: `./app/scripts/${label}.js`, |
|
|
|
|
destFilepath: `${label}.js`, |
|
|
|
|
devMode, |
|
|
|
|
browserPlatforms, |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// the "contentscript" bundle contains the "inpage" bundle
|
|
|
|
|
function createTaskForBundleContentscript({ devMode, testing }) { |
|
|
|
|
const inpage = 'inpage'; |
|
|
|
@ -277,10 +289,6 @@ function createFactoredBuild({ |
|
|
|
|
renderHtmlFile('home', groupSet, commonSet, browserPlatforms); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case 'phishing-detect': { |
|
|
|
|
renderHtmlFile('phishing', groupSet, commonSet, browserPlatforms); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case 'background': { |
|
|
|
|
renderHtmlFile('background', groupSet, commonSet, browserPlatforms); |
|
|
|
|
break; |
|
|
|
|