2017-02-09 11:45:42 +00:00
|
|
|
const webpack = require("webpack");
|
|
|
|
const copyPlugin = require("copy-webpack-plugin");
|
2017-02-09 17:48:36 +00:00
|
|
|
const duplicatePlugin = require("./webpack-duplicates");
|
2017-02-09 11:45:42 +00:00
|
|
|
const htmlPlugin = require("html-webpack-plugin");
|
|
|
|
const ngAnnotatePlugin = require("ng-annotate-webpack-plugin");
|
2017-02-09 18:58:48 +00:00
|
|
|
const path = require("path");
|
2017-02-09 11:45:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
const depLoaders = {
|
2017-02-09 18:58:48 +00:00
|
|
|
jquery: "expose-loader?jQuery",
|
|
|
|
angular: "exports-loader?window.angular"
|
2017-02-09 11:45:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Add imports to these modules, as they don't specify their imports properly
|
|
|
|
const addDeps = {
|
|
|
|
"angular-ui-sortable": [ "jquery-ui", "jquery-ui/ui/widgets/sortable" ],
|
|
|
|
|
|
|
|
// Until https://github.com/webpack-contrib/css-loader/issues/51 is resolved we have to include CSS files by hand
|
|
|
|
bootstrap: [ "bootstrap/dist/css/bootstrap.css", "bootstrap/dist/css/bootstrap-theme.css" ],
|
|
|
|
"leaflet-simple-graticule": [ "leaflet-simple-graticule/L.SimpleGraticule.css" ],
|
|
|
|
"bootstrap-touchspin": [ "bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css" ],
|
|
|
|
leaflet: [ "leaflet/dist/leaflet.css" ],
|
|
|
|
"leaflet.locatecontrol": [ "leaflet.locatecontrol/dist/L.Control.Locate.css" ]
|
|
|
|
};
|
|
|
|
|
|
|
|
for(let i in addDeps) {
|
|
|
|
let thisDep = `imports-loader?${addDeps[i].map((dep, i) => `fmImport${i}=${dep}`).join(",")}`;
|
|
|
|
if(depLoaders[i]) {
|
|
|
|
depLoaders[i] = [thisDep, ...(Array.isArray(depLoaders[i]) ? depLoaders[i] : [ depLoaders[i] ])];
|
|
|
|
} else {
|
|
|
|
depLoaders[i] = thisDep;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: __dirname + "/index/index.js",
|
|
|
|
output: {
|
|
|
|
filename: "bundle-[hash].js",
|
|
|
|
path: __dirname + "/build/"
|
|
|
|
},
|
2017-02-09 18:58:48 +00:00
|
|
|
resolve: {
|
2017-02-09 19:39:42 +00:00
|
|
|
unsafeCache: true,
|
2017-02-09 18:58:48 +00:00
|
|
|
alias: {
|
|
|
|
angular: "angular/angular" // We cannot use the main file, as it exports the variable "angular", which clashes with this ProvidePlugin
|
|
|
|
}
|
|
|
|
},
|
2017-02-09 11:45:42 +00:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{ test: /\.css$/, use: [ "style-loader", "css-loader" ] },
|
|
|
|
{ test: /\.js$/, exclude: /\/node_modules\//, loader: "babel-loader?presets=es2015" },
|
|
|
|
{ test: /\.(png|jpe?g|gif|ttf)$/, loader: "url-loader" },
|
2017-02-10 11:12:47 +00:00
|
|
|
{ test: /\.(html|ejs)$/, loader: "html-loader?attrs[]=img:src&attrs[]=link:href" },
|
2017-02-09 11:45:42 +00:00
|
|
|
...Object.keys(depLoaders).map(key => ({ test: new RegExp("/node_modules/" + key + "/.*\.js$"), [Array.isArray(depLoaders[key]) ? "use" : "loader"]: depLoaders[key] })),
|
|
|
|
|
|
|
|
{
|
|
|
|
test: /\/node_modules\/bootstrap\/dist\/css\/bootstrap\.css$/,
|
|
|
|
loader: "string-replace-loader",
|
|
|
|
options: {
|
|
|
|
multiple: [
|
|
|
|
{ search: "src: url\\('\\.\\./fonts/glyphicons-halflings-regular.eot'\\);", replace: "", flags: "" },
|
|
|
|
{ search: "src: url\\('\\.\\./fonts/glyphicons-halflings-regular\\..*", replace: "src: url('../fonts/glyphicons-halflings-regular.ttf') format('truetype');", flags: "" }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins: [
|
2017-02-09 17:48:36 +00:00
|
|
|
new duplicatePlugin(),
|
2017-02-09 11:45:42 +00:00
|
|
|
new ngAnnotatePlugin({
|
|
|
|
add: true
|
|
|
|
}),
|
|
|
|
new htmlPlugin({
|
2017-02-10 11:12:47 +00:00
|
|
|
template: `${__dirname}/index/index.ejs`,
|
|
|
|
filename: "index.ejs"
|
2017-02-09 11:45:42 +00:00
|
|
|
}),
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
$: "jquery",
|
|
|
|
jQuery: "jquery",
|
|
|
|
"window.jQuery": "jquery",
|
|
|
|
L: "leaflet",
|
2017-02-09 18:58:48 +00:00
|
|
|
angular: "angular"
|
2017-02-09 11:45:42 +00:00
|
|
|
}),
|
|
|
|
new copyPlugin([ "deref.html", "opensearch.xml" ].map((file) => ({ from: `${__dirname}/index/${file}` }))),
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
|
|
sourceMap: true
|
|
|
|
}),
|
|
|
|
],
|
2017-02-09 19:39:42 +00:00
|
|
|
devtool: process.env.FM_DEV ? "cheap-eval-source-map" : "source-map"
|
2017-02-09 11:45:42 +00:00
|
|
|
};
|