-
Notifications
You must be signed in to change notification settings - Fork 14
/
webpack.config.js
73 lines (70 loc) · 2.5 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var path = require('path'),
Webpack = require('webpack'),
MiniCssExtractPlugin = require('mini-css-extract-plugin');
(function() {
'use strict';
var outputRoot = process.env.OUTPUT_ROOT ? process.env.OUTPUT_ROOT : 'doc/public/',
siteRoot = process.env.SITE_ROOT !== undefined ? process.env.SITE_ROOT : '/',
publicStaticRoot = 'public/static/';
module.exports = {
entry: [
path.resolve(__dirname, './doc/static/js/ui-toolkit-doc-factory.js'),
path.resolve(__dirname, './doc/static/sass/main-ltr.scss')
],
output: {
path: path.resolve(__dirname, outputRoot),
publicPath: siteRoot + publicStaticRoot,
filename: 'ui-toolkit-doc-factory.js'
},
resolve: {
alias: {
'edx-ui-toolkit': path.resolve(__dirname, 'src'),
doc: path.resolve(__dirname, 'doc/static')
},
modules: ['node_modules']
},
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader
},
{
loader: 'css-loader',
options: {
url: false
}
},
{
loader: 'sass-loader',
options: {
sassOptions: {
includePaths: [
path.resolve(__dirname, './node_modules')
]
},
additionalData: '$pattern-library-path: \'' + siteRoot +
'./public/edx-pattern-library\' !default;'
}
}
]
}
]
},
plugins: [
new Webpack.ProvidePlugin({
$: 'jquery'
}),
new Webpack.IgnorePlugin({resourceRegExp: /^(config.js)$/}),
new Webpack.LoaderOptionsPlugin({
debug: true
}),
new MiniCssExtractPlugin({
filename: 'ui-toolkit.css'
})
],
devtool: 'inline-source-map'
};
}());