73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
const webpack = require('webpack');
|
|
const path = require('path');
|
|
const highlightedLanguages = require('./static/js/constants/highlighted-languages.constant.json');
|
|
|
|
|
|
let config = {
|
|
entry: "./static/js/main.ts",
|
|
output: {
|
|
path: path.resolve(__dirname, "static/build"),
|
|
filename: 'quay-frontend.js'
|
|
},
|
|
resolve: {
|
|
extensions: [".ts", ".js"],
|
|
},
|
|
// Use global variables to maintain compatibility with non-Webpack components
|
|
externals: {
|
|
angular: "angular",
|
|
jquery: "$",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
use: ["ts-loader"],
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
"style-loader",
|
|
"css-loader?minimize=true",
|
|
],
|
|
},
|
|
{
|
|
test: /\.html$/,
|
|
use: [
|
|
'ngtemplate-loader?relativeTo=' + (path.resolve(__dirname)),
|
|
'html-loader',
|
|
]
|
|
},
|
|
]
|
|
},
|
|
plugins: [
|
|
// Replace references to global variables with associated modules
|
|
new webpack.ProvidePlugin({
|
|
FileSaver: 'file-saver',
|
|
angular: "angular",
|
|
$: "jquery",
|
|
}),
|
|
// Whitelist highlight-supported languages (based on https://bjacobel.com/2016/12/04/highlight-bundle-size/)
|
|
new webpack.ContextReplacementPlugin(
|
|
/highlight\.js\/lib\/languages$/,
|
|
new RegExp(`^./(${highlightedLanguages.join('|')})$`)),
|
|
],
|
|
devtool: "cheap-module-source-map",
|
|
};
|
|
|
|
|
|
/**
|
|
* Production settings
|
|
*/
|
|
if (process.env.NODE_ENV === 'production') {
|
|
config.plugins.push(
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
sourceMap: true,
|
|
// Disable mangle to prevent AngularJS errors
|
|
mangle: false
|
|
})
|
|
);
|
|
config.output.filename = 'quay-frontend-[hash].js';
|
|
}
|
|
|
|
module.exports = config;
|