redash/webpack.config.js

184 lines
4.9 KiB
JavaScript
Raw Normal View History

2016-10-30 09:29:51 +00:00
/* eslint-disable */
2017-11-16 11:04:59 +00:00
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const WebpackBuildNotifierPlugin = require('webpack-build-notifier');
2018-02-07 12:15:21 +00:00
const ManifestPlugin = require('webpack-manifest-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
2017-11-16 11:04:59 +00:00
const LessPluginAutoPrefix = require('less-plugin-autoprefix');
const path = require('path');
2016-10-30 09:29:51 +00:00
2017-11-16 11:04:59 +00:00
const redashBackend = process.env.REDASH_BACKEND || 'http://localhost:5000';
2016-10-30 09:29:51 +00:00
2017-11-16 11:04:59 +00:00
const config = {
2016-10-30 09:29:51 +00:00
entry: {
2017-11-20 15:46:37 +00:00
app: ['./client/app/index.js', './client/app/assets/less/main.less'],
2016-10-30 09:29:51 +00:00
},
output: {
2017-06-19 19:32:13 +00:00
path: path.join(__dirname, 'client', 'dist'),
filename: '[name].js',
publicPath: '/static/'
2016-10-30 09:29:51 +00:00
},
resolve: {
alias: {
'@': path.join(__dirname, 'client/app')
}
},
2016-10-30 09:29:51 +00:00
plugins: [
2016-11-24 20:08:17 +00:00
new WebpackBuildNotifierPlugin({title: 'Redash'}),
2016-10-30 09:29:51 +00:00
new webpack.DefinePlugin({
ON_TEST: process.env.NODE_ENV === 'test'
}),
// Enforce angular to use jQuery instead of jqLite
new webpack.ProvidePlugin({'window.jQuery': 'jquery'}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function (module, count) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, './node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
chunks: ['vendor']
}),
2016-10-30 09:29:51 +00:00
new HtmlWebpackPlugin({
template: './client/app/index.html'
2016-10-30 09:29:51 +00:00
}),
new HtmlWebpackPlugin({
template: './client/app/multi_org.html',
filename: 'multi_org.html'
}),
2017-06-18 20:45:43 +00:00
new ExtractTextPlugin({
filename: 'styles.[chunkhash].css',
publicPath: '/assets/'
2018-02-07 12:15:21 +00:00
}),
new ManifestPlugin({
fileName: 'asset-manifest.json'
}),
new CopyWebpackPlugin([
{ from: 'client/app/assets/robots.txt' },
{ from: 'client/app/assets/css/login.css', to: 'styles/login.css' },
2018-02-07 21:08:03 +00:00
{ from: 'node_modules/jquery/dist/jquery.min.js', to: 'js/jquery.min.js' },
])
2016-10-30 09:29:51 +00:00
],
module: {
2017-06-18 20:45:43 +00:00
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: ['babel-loader', 'eslint-loader']
2017-06-18 20:45:43 +00:00
},
{
test: /\.html$/,
exclude: [/node_modules/, /index\.html/],
use: [{
loader: 'raw-loader'
}]
},
{
test: /\.css$/,
2017-06-18 21:11:00 +00:00
use: ExtractTextPlugin.extract([{
loader: 'css-loader',
options: {
minimize: process.env.NODE_ENV === 'production'
}
}])
2017-06-18 20:45:43 +00:00
},
2017-11-07 08:41:29 +00:00
{
test: /\.less$/,
use: ExtractTextPlugin.extract([
{
loader: 'css-loader',
options: {
minimize: process.env.NODE_ENV === 'production'
}
}, {
loader: 'less-loader',
options: {
plugins: [
new LessPluginAutoPrefix({browsers: ['last 3 versions']})
]
}
}
])
},
2016-10-30 09:29:51 +00:00
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
2017-06-18 20:45:43 +00:00
use: [{
2017-12-19 11:37:08 +00:00
loader: 'file-loader',
2017-06-18 20:45:43 +00:00
options: {
2017-12-19 11:37:08 +00:00
context: path.resolve(__dirname, './client/app/assets/images/'),
outputPath: 'images/',
2017-12-19 11:37:08 +00:00
name: '[path][name].[ext]',
2017-06-18 20:45:43 +00:00
}
}]
2016-10-30 09:29:51 +00:00
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
2017-06-18 20:45:43 +00:00
use: [{
loader: 'url-loader',
options: {
limit: 10000,
name: 'fonts/[name].[hash:7].[ext]'
}
}]
2016-10-30 09:29:51 +00:00
}
]
},
devtool: 'cheap-eval-module-source-map',
stats: {
modules: false,
chunkModules: false,
},
2016-10-30 09:29:51 +00:00
devServer: {
inline: true,
index: '/static/index.html',
historyApiFallback: {
index: '/static/index.html',
},
contentBase: path.join(__dirname, 'client', 'dist'),
2018-02-07 15:18:38 +00:00
publicPath: '/static/',
proxy: [{
context: [
'/login', '/invite', '/setup', '/images', '/js', '/styles',
'/status.json', '/api', '/oauth'],
target: redashBackend + '/',
changeOrigin: true,
2017-11-16 11:04:59 +00:00
secure: false,
}],
stats: {
modules: false,
chunkModules: false,
},
2016-10-30 09:29:51 +00:00
}
};
if (process.env.DEV_SERVER_HOST) {
config.devServer.host = process.env.DEV_SERVER_HOST;
}
2016-10-30 09:29:51 +00:00
if (process.env.NODE_ENV === 'production') {
config.output.path = __dirname + '/client/dist';
config.output.filename = '[name].[chunkhash].js';
2017-06-18 20:45:43 +00:00
config.plugins.push(new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: true
}
}));
2016-10-30 09:29:51 +00:00
config.devtool = 'source-map';
}
module.exports = config;