This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
68 lines (64 loc) · 1.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
const path = require('path');
const glob = require('glob');
var webpack = require('webpack');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const RemovePlugin = require('remove-files-webpack-plugin');
const scss = glob.sync('H5P*/src/*.scss');
const scssObject = scss.reduce((acc, file) => {
const name = file.replace('src', 'dist/css').replace('scss', 'css');
acc[name] = path.join(__dirname, file);;
return acc;
}, {});
const js = glob.sync('H5P*/src/*.js');
const jsObject = js.reduce((acc, file) => {
const name = file.replace('src', 'dist/js')
acc[name] = path.join(__dirname, file);;
return acc;
}, {});
const config = [
{
entry: scssObject,
output: {
path: path.resolve(__dirname),
filename:'[name].js'
},
module: {
rules: [
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
]
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
use: ['url-loader?limit=100000']
}
]
},
plugins: [
new MiniCssExtractPlugin({ filename: '[name]' })
],
devtool: 'eval-source-map'
},
{
entry: jsObject,
output: {
path: path.resolve(__dirname),
filename:'[name]'
},
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/
}
]
},
devtool: 'eval-source-map'
}
]
module.exports = config;