File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,19 +66,19 @@ function buildTask() {
6666 . pipe ( umd ( ) )
6767 . pipe ( header ( banner , { pkg : pkg } ) ) ;
6868
69- var unminified = combinedSrcFile
69+ var unminifiedFile = combinedSrcFile
7070 . pipe ( clone ( ) )
7171 . pipe ( preprocess ( { context : { VERSION : pkg . version , DEBUG : true } } ) )
7272 . pipe ( gulp . dest ( distFolder ) ) ;
7373
74- var minified = combinedSrcFile
74+ var minifiedFile = combinedSrcFile
7575 . pipe ( clone ( ) )
7676 . pipe ( preprocess ( { context : { VERSION : pkg . version , DEBUG : false } } ) ) // removes DEBUG tagged code
7777 . pipe ( uglify ( { preserveComments : 'license' } ) )
7878 . pipe ( rename ( minDistFilename ) )
7979 . pipe ( gulp . dest ( distFolder ) ) ;
8080
81- return merge ( unminified , minified ) ;
81+ return merge ( unminifiedFile , minifiedFile ) ;
8282}
8383
8484
You can’t perform that action at this time.
0 commit comments