File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
** Currently under development.**
4
4
5
- [ ![ Build Status] ( https://travis-ci.org/philwareham/textpattern-bootstrap.svg )] ( https://travis-ci.org/philwareham/textpattern-bootstrap )
6
-
5
+ [ ![ Build Status] ( https://travis-ci.com/philwareham/textpattern-bootstrap.svg )] ( https://travis-ci.com/philwareham/textpattern-bootstrap )
7
6
[ Demo] ( https://bootstrap.philwareham.co.uk/ ) .
8
7
9
8
Textpattern templates for use with [ Bootstrap] ( https://getbootstrap.com/ ) v5.
Original file line number Diff line number Diff line change 25
25
"postcss-loader" : " 3.0.0" ,
26
26
"sass" : " 1.32.5" ,
27
27
"sass-loader" : " 10.1.1" ,
28
- "terser-webpack-plugin" : " 5.1.1" ,
29
28
"webpack" : " 5.18.0" ,
30
29
"webpack-cli" : " 4.4.0"
31
30
},
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ const fs = require('fs');
4
4
const { CleanWebpackPlugin } = require ( 'clean-webpack-plugin' ) ;
5
5
const CopyWebpackPlugin = require ( 'copy-webpack-plugin' ) ;
6
6
const MiniCssExtractPlugin = require ( 'mini-css-extract-plugin' ) ;
7
- const TerserPlugin = require ( 'terser-webpack-plugin' ) ;
8
7
const webpack = require ( 'webpack' ) ;
9
8
10
9
module . exports = {
10
+ mode : 'production' ,
11
11
entry : [
12
12
'./js/app.js' ,
13
13
'./scss/app.scss' ,
@@ -20,8 +20,7 @@ module.exports = {
20
20
hints : false
21
21
} ,
22
22
optimization : {
23
- minimize : true ,
24
- minimizer : [ new TerserPlugin ( ) ]
23
+ minimize : true
25
24
} ,
26
25
plugins : [
27
26
new CleanWebpackPlugin ( ) ,
You can’t perform that action at this time.
0 commit comments