forked from hiasinho/Leaflet.vector-markers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (39 loc) · 891 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* eslint-disable */
var path = require('path');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var autoprefixer = require('autoprefixer');
module.exports = {
output: {
library: 'VectorMarkers',
libraryTarget: 'umd',
},
externals: [
{
leaflet: {
amd: 'leaflet',
commonjs: 'leaflet',
commonjs2: 'leaflet',
root: 'L'
}
}
],
module: {
loaders: [
{test: /\.js$/, exclude: /node_modules/, loader: 'babel'},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract(
'style',
'css!postcss-loader!sass'
)
}
]
},
plugins: [
new ExtractTextPlugin("leaflet-vector-markers.css")
],
sassLoader: {
includePaths: [path.resolve(__dirname, "./src")]
},
postcss: [ autoprefixer({ browsers: ['last 3 version', '> 10%', 'IE 8'] }) ]
};