96 строки
2.5 KiB
JavaScript
96 строки
2.5 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* Webpack configuration for building the webextension.
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
|
|
const path = require('path');
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
const GenerateJsonPlugin = require('generate-json-webpack-plugin');
|
|
|
|
const packageData = require('./package.json');
|
|
const manifestTemplate = require('./src/manifest.json');
|
|
|
|
const BUILD_DIR = path.resolve(__dirname, 'build');
|
|
|
|
// FIXME(osmose): This file is optimized for development. At some point we
|
|
// should add optimizations for production-ready code bundling.
|
|
module.exports = {
|
|
mode: 'development',
|
|
devtool: 'inline-source-map',
|
|
target: 'web',
|
|
entry: {
|
|
background: './src/background/index',
|
|
extraction: './src/extraction',
|
|
browser_action: './src/browser_action/index',
|
|
},
|
|
output: {
|
|
path: BUILD_DIR,
|
|
filename: '[name].bundle.js',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
},
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
{loader: 'style-loader'},
|
|
{loader: 'css-loader'},
|
|
],
|
|
},
|
|
// jsdom is imported by fathom-web utils.js; it's only used for testing
|
|
{
|
|
test: /jsdom.*/,
|
|
use: {
|
|
loader: 'null-loader',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
node: {
|
|
fs: 'empty',
|
|
},
|
|
plugins: [
|
|
new CopyWebpackPlugin([
|
|
// Static files
|
|
{from: '**/*.svg'},
|
|
{from: '**/*.png'},
|
|
{from: '**/*.html'},
|
|
|
|
// Experimental APIs, which are not bundled
|
|
{from: 'experiment_apis/**/*.json'},
|
|
{from: 'experiment_apis/**/*.js'},
|
|
], {context: 'src/'}),
|
|
|
|
// Process and emit manifest.json, replacing any values that start with $
|
|
// with the corresponding key from package.json.
|
|
new GenerateJsonPlugin('manifest.json', manifestTemplate, (key, value) => {
|
|
if (typeof value === 'string' && value.startsWith('$')) {
|
|
const parts = value.slice(1).split('.');
|
|
let object = packageData;
|
|
while (parts.length > 0) {
|
|
object = object[parts.pop()];
|
|
}
|
|
return object;
|
|
}
|
|
return value;
|
|
}),
|
|
],
|
|
resolve: {
|
|
extensions: ['.js', '.jsx'],
|
|
alias: {
|
|
commerce: path.resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
};
|