Adrià Vilanova Martínez | 413cb44 | 2021-09-06 00:30:45 +0200 | [diff] [blame] | 1 | const webpack = require('webpack'); |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 2 | const path = require('path'); |
| 3 | const json5 = require('json5'); |
| 4 | const CopyWebpackPlugin = require('copy-webpack-plugin'); |
| 5 | const WebpackShellPluginNext = require('webpack-shell-plugin-next'); |
| 6 | |
Adrià Vilanova Martínez | 43d0a7b | 2021-08-28 01:21:17 +0200 | [diff] [blame] | 7 | // Pontoon uses their own locale set. This array lets us convert those locales |
| 8 | // to the ones accepted by Chrome, Firefox, etc. |
| 9 | const localeOverrides = [ |
| 10 | { |
| 11 | pontoonLocale: 'pt-rBR', |
| 12 | webExtLocale: 'pt', // This way it targets both 'pt_BR' and 'pt_PT' |
| 13 | }, |
| 14 | ]; |
| 15 | |
| 16 | const getCopyPluginsForOverridenLocales = outputPath => { |
| 17 | return localeOverrides.map(l => { |
| 18 | return new CopyWebpackPlugin({ |
| 19 | patterns: [ |
| 20 | { |
| 21 | from: path.join(__dirname, 'src/static/_locales/' + l.pontoonLocale), |
| 22 | to: path.join(outputPath, '_locales/' + l.webExtLocale), |
| 23 | globOptions: { |
| 24 | ignore: ['**/OWNERS', '**.md'], |
| 25 | } |
| 26 | }, |
| 27 | ] |
| 28 | }); |
| 29 | }); |
| 30 | }; |
| 31 | |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 32 | module.exports = (env, args) => { |
| 33 | let entry = { |
| 34 | // Content scripts |
| 35 | communityConsoleMain: './src/contentScripts/communityConsole/main.js', |
| 36 | communityConsoleStart: './src/contentScripts/communityConsole/start.js', |
| 37 | publicForum: './src/contentScripts/publicForum.js', |
| 38 | publicThread: './src/contentScripts/publicThread.js', |
| 39 | profile: './src/contentScripts/profile.js', |
| 40 | profileIndicator: './src/contentScripts/profileIndicator.js', |
| 41 | |
| 42 | // Injected JS |
| 43 | profileIndicatorInject: './src/injections/profileIndicator.js', |
| 44 | batchLockInject: './src/injections/batchLock.js', |
Adrià Vilanova Martínez | 43ec2b9 | 2021-07-16 18:44:54 +0200 | [diff] [blame] | 45 | xhrInterceptorInject: './src/injections/xhrInterceptor.js', |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 46 | |
| 47 | // Options page |
Adrià Vilanova Martínez | 09f35be | 2021-09-06 19:50:09 +0200 | [diff] [blame] | 48 | optionsCommon: './src/options/optionsCommon.js', |
avm99963 | 2485a3e | 2021-09-08 22:18:38 +0200 | [diff] [blame] | 49 | |
| 50 | // Common CSS |
| 51 | mdcStyles: './src/mdc/index.js', |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | // Background script (or service worker for MV3) |
| 55 | if (env.browser_target == 'chromium_mv3') |
| 56 | entry.sw = './src/sw.js'; |
| 57 | else |
| 58 | entry.background = './src/background.js'; |
| 59 | |
| 60 | let outputPath = path.join(__dirname, 'dist', env.browser_target); |
| 61 | |
Adrià Vilanova Martínez | 43d0a7b | 2021-08-28 01:21:17 +0200 | [diff] [blame] | 62 | let overridenLocalePaths = |
| 63 | localeOverrides.map(l => '**/_locales/' + l.pontoonLocale); |
| 64 | |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 65 | return { |
| 66 | entry, |
| 67 | output: { |
| 68 | filename: '[name].bundle.js', |
| 69 | path: outputPath, |
Adrià Vilanova Martínez | 85424b6 | 2021-07-11 21:52:00 +0200 | [diff] [blame] | 70 | clean: true, |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 71 | }, |
| 72 | plugins: [ |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 73 | new WebpackShellPluginNext({ |
| 74 | onBuildEnd: { |
| 75 | scripts: |
avm99963 | efce210 | 2021-03-23 23:23:26 +0100 | [diff] [blame] | 76 | ['genmanifest -template templates/manifest.gjson -dest ' + |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 77 | path.join(outputPath, 'manifest.json') + ' ' + |
| 78 | env.browser_target] |
| 79 | } |
| 80 | }), |
| 81 | new CopyWebpackPlugin({ |
| 82 | patterns: [ |
| 83 | { |
| 84 | from: path.join(__dirname, 'src/static'), |
| 85 | to: outputPath, |
| 86 | globOptions: { |
Adrià Vilanova Martínez | 43d0a7b | 2021-08-28 01:21:17 +0200 | [diff] [blame] | 87 | ignore: ['**/OWNERS', '**.md', ...overridenLocalePaths], |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 88 | } |
| 89 | }, |
| 90 | ] |
| 91 | }), |
Adrià Vilanova Martínez | 413cb44 | 2021-09-06 00:30:45 +0200 | [diff] [blame] | 92 | new webpack.DefinePlugin({ |
| 93 | 'PRODUCTION': args.mode == 'production', |
| 94 | }), |
Adrià Vilanova Martínez | 43d0a7b | 2021-08-28 01:21:17 +0200 | [diff] [blame] | 95 | ...getCopyPluginsForOverridenLocales(outputPath), |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 96 | ], |
| 97 | // NOTE: Change to |
| 98 | // (args.mode == 'production' ? 'source-map' : 'inline-source-map') |
| 99 | // once https://crbug.com/212374 is fixed. |
| 100 | devtool: 'inline-source-map', |
| 101 | module: { |
| 102 | rules: [ |
| 103 | { |
avm99963 | 2485a3e | 2021-09-08 22:18:38 +0200 | [diff] [blame] | 104 | test: /\.json5$/i, |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 105 | type: 'json', |
| 106 | parser: { |
| 107 | parse: json5.parse, |
| 108 | }, |
| 109 | }, |
avm99963 | 2485a3e | 2021-09-08 22:18:38 +0200 | [diff] [blame] | 110 | { |
| 111 | test: /\.s[ac]ss$/i, |
| 112 | use: [ |
| 113 | 'style-loader', |
| 114 | 'css-loader', |
| 115 | { |
| 116 | loader: 'sass-loader', |
| 117 | options: { |
| 118 | // Prefer `dart-sass` |
| 119 | implementation: require('sass'), |
| 120 | }, |
| 121 | }, |
| 122 | ], |
| 123 | }, |
Adrià Vilanova Martínez | 3465e77 | 2021-07-11 19:18:41 +0200 | [diff] [blame] | 124 | ] |
| 125 | }, |
| 126 | }; |
| 127 | }; |