-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
93 lines (90 loc) · 3.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
'use strict';
var path = require('path');
var webpack = require('sgmf-scripts').webpack;
var ExtractTextPlugin = require('sgmf-scripts')['extract-text-webpack-plugin'];
var sgmfScripts = require('sgmf-scripts');
var bootstrapPackages = {
Alert: 'exports-loader?Alert!bootstrap/js/src/alert',
// Button: 'exports-loader?Button!bootstrap/js/src/button',
Carousel: 'exports-loader?Carousel!bootstrap/js/src/carousel',
Collapse: 'exports-loader?Collapse!bootstrap/js/src/collapse',
// Dropdown: 'exports-loader?Dropdown!bootstrap/js/src/dropdown',
Modal: 'exports-loader?Modal!bootstrap/js/src/modal',
// Popover: 'exports-loader?Popover!bootstrap/js/src/popover',
Scrollspy: 'exports-loader?Scrollspy!bootstrap/js/src/scrollspy',
Tab: 'exports-loader?Tab!bootstrap/js/src/tab',
// Tooltip: 'exports-loader?Tooltip!bootstrap/js/src/tooltip',
Util: 'exports-loader?Util!bootstrap/js/src/util'
};
module.exports = [{
mode: 'production',
name: 'js',
entry: sgmfScripts.createJsPath(),
output: {
path: path.resolve('./cartridges/plugin_reorder_demo/cartridge/static'),
filename: '[name].js'
},
resolve: {
alias: {
jquery: path.resolve(__dirname, '../storefront-reference-architecture/node_modules/jquery'),
bootstrap: path.resolve(__dirname, '../storefront-reference-architecture/node_modules/bootstrap'),
lodash: path.resolve(__dirname, '../storefront-reference-architecture/node_modules/lodash')
}
},
module: {
rules: [
{
test: /bootstrap(.)*\.js$/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/env'],
plugins: ['@babel/plugin-proposal-object-rest-spread'],
cacheDirectory: true
}
}
}
]
},
plugins: [new webpack.ProvidePlugin(bootstrapPackages)]
}, {
mode: 'none',
name: 'scss',
entry: sgmfScripts.createScssPath(),
output: {
path: path.resolve('./cartridges/plugin_reorder_demo/cartridge/static'),
filename: '[name].css'
},
module: {
rules: [{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
use: [{
loader: 'css-loader',
options: {
url: false,
minimize: true
}
}, {
loader: 'postcss-loader',
options: {
plugins: [
require('autoprefixer')()
]
}
}, {
loader: 'sass-loader',
options: {
includePaths: [
path.resolve(process.cwd(), '../storefront-reference-architecture/node_modules/'),
path.resolve(process.cwd(), '../storefront-reference-architecture/node_modules/flag-icon-css/sass')
]
}
}]
})
}]
},
plugins: [
new ExtractTextPlugin({ filename: '[name].css' })
]
}];