Skip to content

Commit

Permalink
refactor: remove jplayerplaylist plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfa committed Feb 11, 2016
1 parent fb6b171 commit 06cd94d
Show file tree
Hide file tree
Showing 6 changed files with 202 additions and 654 deletions.
7 changes: 6 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ gulp.task("uglify", function () {
gulp.src("static/js/page.js")
.pipe(uglify())
.pipe(rename('page.min.js'))
.pipe(gulp.dest("static/js"))
.pipe(gulp.dest("static/js"))

gulp.src("static/js/base.js")
.pipe(uglify())
.pipe(rename('base.min.js'))
.pipe(gulp.dest("static/js"))
});

gulp.task('watch', function () {
Expand Down
Loading

0 comments on commit 06cd94d

Please sign in to comment.