2016-10-30 09:29:51 +00:00
|
|
|
/* eslint-disable */
|
|
|
|
|
2018-02-25 09:13:54 +00:00
|
|
|
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');
|
2018-02-07 14:43:25 +00:00
|
|
|
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
|
|
|
|
2018-02-25 09:13:54 +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: {
|
2018-02-15 19:48:15 +00:00
|
|
|
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: {
|
2018-02-25 09:13:54 +00:00
|
|
|
path: path.join(basePath, './dist'),
|
2017-05-09 07:41:26 +00:00
|
|
|
filename: '[name].js',
|
2018-02-07 14:43:25 +00:00
|
|
|
publicPath: '/static/'
|
2016-10-30 09:29:51 +00:00
|
|
|
},
|
2017-10-26 06:58:24 +00:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2018-02-25 09:13:54 +00:00
|
|
|
'@': appPath
|
2017-10-26 06:58:24 +00:00
|
|
|
}
|
|
|
|
},
|
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'
|
|
|
|
}),
|
2017-12-01 11:38:34 +00:00
|
|
|
// Enforce angular to use jQuery instead of jqLite
|
|
|
|
new webpack.ProvidePlugin({'window.jQuery': 'jquery'}),
|
2016-10-31 12:35:32 +00:00
|
|
|
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({
|
2018-02-09 16:56:46 +00:00
|
|
|
template: './client/app/index.html',
|
|
|
|
filename: 'index.html',
|
2018-02-15 19:48:15 +00:00
|
|
|
excludeChunks: ['server'],
|
2016-10-30 09:29:51 +00:00
|
|
|
}),
|
2017-05-03 20:53:23 +00:00
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './client/app/multi_org.html',
|
2018-02-09 16:56:46 +00:00
|
|
|
filename: 'multi_org.html',
|
2018-02-15 19:48:15 +00:00
|
|
|
excludeChunks: ['server'],
|
2017-05-03 20:53:23 +00:00
|
|
|
}),
|
2017-06-18 20:45:43 +00:00
|
|
|
new ExtractTextPlugin({
|
2018-02-15 19:48:15 +00:00
|
|
|
filename: '[name].[chunkhash].css',
|
2018-02-07 12:15:21 +00:00
|
|
|
}),
|
|
|
|
new ManifestPlugin({
|
|
|
|
fileName: 'asset-manifest.json'
|
2018-02-07 14:43:25 +00:00
|
|
|
}),
|
|
|
|
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' },
|
2018-02-07 14:43:25 +00:00
|
|
|
])
|
2016-10-30 09:29:51 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
module: {
|
2017-06-18 20:45:43 +00:00
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
2017-07-02 11:22:36 +00:00
|
|
|
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: {
|
2018-02-25 09:13:54 +00:00
|
|
|
context: path.resolve(appPath, './assets/images/'),
|
2018-02-07 14:43:25 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-01-31 06:30:27 +00:00
|
|
|
devtool: 'cheap-eval-module-source-map',
|
2017-11-12 18:15:21 +00:00
|
|
|
stats: {
|
|
|
|
modules: false,
|
|
|
|
chunkModules: false,
|
|
|
|
},
|
2016-10-30 09:29:51 +00:00
|
|
|
devServer: {
|
|
|
|
inline: true,
|
2018-02-08 12:07:26 +00:00
|
|
|
index: '/static/index.html',
|
|
|
|
historyApiFallback: {
|
|
|
|
index: '/static/index.html',
|
2018-02-09 16:56:46 +00:00
|
|
|
rewrites: [{from: /./, to: '/static/index.html'}],
|
2018-02-08 12:07:26 +00:00
|
|
|
},
|
2018-02-09 16:56:46 +00:00
|
|
|
contentBase: false,
|
2018-02-07 15:18:38 +00:00
|
|
|
publicPath: '/static/',
|
2018-02-09 16:56:46 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
],
|
2017-11-12 18:15:21 +00:00
|
|
|
stats: {
|
|
|
|
modules: false,
|
|
|
|
chunkModules: false,
|
|
|
|
},
|
2016-10-30 09:29:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-16 13:09:45 +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') {
|
2017-05-09 07:41:26 +00:00
|
|
|
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;
|