Skip to content

Commit ce3ffe6

Browse files
committed
2 parents a889224 + 66d14fa commit ce3ffe6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)