2015-09-25 12:43:28 +02:00
|
|
|
var path = require('path');
|
|
|
|
var webpack = require('webpack');
|
2015-12-01 19:05:43 +01:00
|
|
|
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
2015-09-25 12:43:28 +02:00
|
|
|
|
2015-12-02 15:54:26 +01:00
|
|
|
var olm_path = path.resolve('./node_modules/olm');
|
|
|
|
|
2015-09-25 12:43:28 +02:00
|
|
|
module.exports = {
|
|
|
|
module: {
|
|
|
|
preLoaders: [
|
|
|
|
{ test: /\.js$/, loader: "source-map-loader" }
|
|
|
|
],
|
|
|
|
loaders: [
|
|
|
|
{ test: /\.json$/, loader: "json" },
|
|
|
|
{ test: /\.js$/, loader: "babel", include: path.resolve('./src') },
|
2015-12-01 19:05:43 +01:00
|
|
|
// css-raw-loader loads CSS but doesn't try to treat url()s as require()s
|
|
|
|
{ test: /\.css$/, loader: ExtractTextPlugin.extract("css-raw-loader") },
|
2015-09-25 12:43:28 +02:00
|
|
|
]
|
|
|
|
},
|
2015-10-15 15:40:36 +02:00
|
|
|
output: {
|
|
|
|
devtoolModuleFilenameTemplate: function(info) {
|
|
|
|
// Reading input source maps gives only relative paths here for
|
|
|
|
// everything. Until I figure out how to fix this, this is a
|
|
|
|
// workaround.
|
|
|
|
// We use the relative resource path with any '../'s on the front
|
|
|
|
// removed which gives a tree with matrix-react-sdk and vector
|
|
|
|
// trees smashed together, but this fixes everything being under
|
|
|
|
// various levels of '.' and '..'
|
2015-10-23 11:16:00 +02:00
|
|
|
// Also, sometimes the resource path is absolute.
|
|
|
|
return path.relative(process.cwd(), info.resourcePath).replace(/^[\/\.]*/, '');
|
2015-10-15 15:40:36 +02:00
|
|
|
}
|
|
|
|
},
|
2015-09-25 12:43:28 +02:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
// alias any requires to the react module to the one in our path, otherwise
|
|
|
|
// we tend to get the react source included twice when using npm link.
|
|
|
|
react: path.resolve('./node_modules/react'),
|
2015-12-02 15:54:26 +01:00
|
|
|
|
|
|
|
// matrix-js-sdk will use olm if it is available,
|
|
|
|
// but does not explicitly depend on it. Pull it
|
|
|
|
// in from node_modules if it's there.
|
|
|
|
olm: olm_path,
|
2015-09-25 12:43:28 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
2015-10-14 10:20:18 +02:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
|
|
}
|
2015-12-02 15:54:26 +01:00
|
|
|
}),
|
|
|
|
|
2015-12-01 19:05:43 +01:00
|
|
|
new ExtractTextPlugin("bundle.css", {
|
|
|
|
allChunks: true
|
2015-12-03 19:28:50 +01:00
|
|
|
}),
|
|
|
|
|
2015-12-02 15:54:26 +01:00
|
|
|
// olm.js includes "require 'fs'", which is never
|
|
|
|
// executed in the browser. Ignore it.
|
|
|
|
new webpack.IgnorePlugin(/^fs$/, /node_modules\/olm$/)
|
2015-09-25 12:43:28 +02:00
|
|
|
],
|
|
|
|
devtool: 'source-map'
|
|
|
|
};
|
2015-12-02 15:54:26 +01:00
|
|
|
|
|
|
|
// ignore olm.js if it's not installed.
|
|
|
|
(function() {
|
|
|
|
var fs = require('fs');
|
|
|
|
try {
|
|
|
|
fs.lstatSync(olm_path);
|
2015-12-03 19:28:50 +01:00
|
|
|
console.log("Olm is installed; including it in webpack bundle");
|
2015-12-02 15:54:26 +01:00
|
|
|
} catch (e) {
|
|
|
|
module.exports.plugins.push(
|
|
|
|
new webpack.IgnorePlugin(/^olm$/)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}) ();
|