superset/caravel/assets/webpack.config.js

78 lines
2.2 KiB
JavaScript
Raw Normal View History

2016-03-18 02:44:58 -04:00
var path = require('path');
var APP_DIR = path.resolve(__dirname, './'); // input
var BUILD_DIR = path.resolve(__dirname, './javascripts/dist'); // output
var config = {
// for now generate one compiled js file per entry point / html page
entry: {
'css-theme': APP_DIR + '/javascripts/css-theme.js',
dashboard: APP_DIR + '/javascripts/dashboard.jsx',
2016-03-18 02:44:58 -04:00
explore: APP_DIR + '/javascripts/explore.js',
2016-03-24 17:11:29 -04:00
welcome: APP_DIR + '/javascripts/welcome.js',
2016-03-18 02:44:58 -04:00
sql: APP_DIR + '/javascripts/sql.js',
standalone: APP_DIR + '/javascripts/standalone.js',
common: APP_DIR + '/javascripts/common.js'
2016-03-18 02:44:58 -04:00
},
output: {
path: BUILD_DIR,
filename: '[name].entry.js'
},
resolve: {
alias: {
webworkify: 'webworkify-webpack'
}
},
2016-03-18 02:44:58 -04:00
module: {
loaders: [
{
test: /\.jsx?/,
include: APP_DIR,
exclude: APP_DIR + '/node_modules',
loader: 'babel'
},
/* for react-map-gl overlays */
{
test: /\.react\.js$/,
include: APP_DIR + '/node_modules/react-map-gl/src/overlays',
loader: 'babel'
},
2016-03-18 02:44:58 -04:00
/* for require('*.css') */
{
test: /\.css$/,
include: APP_DIR,
loader: "style-loader!css-loader"
},
/* for css linking images */
{ test: /\.png$/, loader: "url-loader?limit=100000" },
{ test: /\.jpg$/, loader: "file-loader" },
{ test: /\.gif$/, loader: "file-loader" },
/* for font-awesome */
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&minetype=application/font-woff" },
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" },
/* for require('*.less') */
{
test: /\.less$/,
include: APP_DIR,
loader: "style!css!less"
},
/* for mapbox */
{
test: /\.json$/,
loader: 'json-loader'
}, {
test: /\.js$/,
include: APP_DIR + '/node_modules/mapbox-gl/js/render/painter/use_program.js',
loader: 'transform/cacheable?brfs'
2016-03-18 02:44:58 -04:00
}
],
postLoaders: [{
include: /node_modules\/mapbox-gl/,
loader: 'transform',
query: 'brfs'
}]
2016-03-18 02:44:58 -04:00
},
plugins: []
};
module.exports = config;