redash/webpack.config.js

205 lines
5.4 KiB
JavaScript
Raw Normal View History

2016-10-30 09:29:51 +00:00
/* eslint-disable */
const fs = require('fs');
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
const basePath = fs.realpathSync(path.join(__dirname, 'client'));
const appPath = fs.realpathSync(path.join(__dirname, 'client', 'app'));
2017-11-16 11:04:59 +00:00
const config = {
2016-10-30 09:29:51 +00:00
entry: {
app: [
'./client/app/index.js',
'./client/app/assets/less/main.less',
],
server: [
'./client/app/assets/less/server.less',
],
2016-10-30 09:29:51 +00:00
},
output: {
path: path.join(basePath, './dist'),
filename: '[name].js',
publicPath: '/static/'
2016-10-30 09:29:51 +00:00
},
resolve: {
alias: {
'@': appPath
}
},
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',
filename: 'index.html',
excludeChunks: ['server'],
2016-10-30 09:29:51 +00:00
}),
new HtmlWebpackPlugin({
template: './client/app/multi_org.html',
filename: 'multi_org.html',
excludeChunks: ['server'],
}),
2017-06-18 20:45:43 +00:00
new ExtractTextPlugin({
filename: '[name].[chunkhash].css',
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: {
context: path.resolve(appPath, './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',
rewrites: [{from: /./, to: '/static/index.html'}],
},
contentBase: false,
2018-02-07 15:18:38 +00:00
publicPath: '/static/',
proxy: [
{
context: ['/login', '/logout', '/invite', '/setup', '/status.json', '/api', '/oauth'],
target: redashBackend + '/',
changeOrigin: true,
secure: false,
},
{
context: (path) => {
// CSS/JS for server-rendered pages should be served from backend
return /^\/static\/[a-z]+\.[0-9a-fA-F]+\.(css|js)$/.test(path);
},
target: redashBackend + '/',
changeOrigin: true,
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.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;