Skip to content

Commit

Permalink
Remove the semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Raincal committed Jun 24, 2018
1 parent ae8fa98 commit 6ea4473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gulp.task('scripts', () => {
return gulp.src([`src/${fileName}.js`, 'lib/*.js'])
.pipe(concat(`${fileName}.min.js`))
.pipe(uglify())
.pipe(gulp.dest('./'));
.pipe(gulp.dest('./'))
})
})

Expand Down

0 comments on commit 6ea4473

Please sign in to comment.