File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,6 @@ flycheck_*.el
11
11
12
12
node_modules /
13
13
coverage /
14
- test /unit /coverage
14
+ test /unit /coverage
15
+
16
+ shrinkwrap.yaml
Original file line number Diff line number Diff line change @@ -25,13 +25,18 @@ module.exports = [
25
25
libraryTarget : "umd"
26
26
} ,
27
27
28
- plugins : [
29
- new webpack . optimize . DedupePlugin ( ) ,
28
+ plugins : [
30
29
new webpack . DefinePlugin ( {
31
30
'process.env' : {
32
31
NODE_ENV : JSON . stringify ( 'production' )
33
32
}
34
33
} ) ,
34
+ new webpack . optimize . UglifyJsPlugin ( {
35
+ compress : {
36
+ warnings : false
37
+ }
38
+ } ) ,
39
+ new webpack . optimize . DedupePlugin ( ) ,
35
40
new webpack . BannerPlugin ( banner , {
36
41
raw : true
37
42
} ) ,
@@ -81,7 +86,7 @@ module.exports = [
81
86
] ,
82
87
83
88
module : {
84
- loaders : loaders
89
+ loaders : loaders
85
90
} ,
86
91
87
92
resolve : {
You can’t perform that action at this time.
0 commit comments