Skip to content

Commit

Permalink
Remove extra youtube.min.js file and concat youtube.js straight to ma…
Browse files Browse the repository at this point in the history
…in.js.
  • Loading branch information
Matt Parlane committed Sep 27, 2017
1 parent 71b2047 commit 2cf20d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Expand Up @@ -19,7 +19,7 @@ gulp.task("clean", function () {
*/
gulp.task("js", function () {
return gulp
.src(["js/vendor/**/*", "!js/vendor/jquery.js", "js/*"])
.src(["js/vendor/**/*", "!js/vendor/jquery.js", "js/src/*"])
.pipe(concat("main.js"))
.pipe(uglify({preserveComments: "some"}))
.pipe(gulp.dest("tmp/js/"));
Expand Down Expand Up @@ -101,4 +101,4 @@ gulp.task("dist", ["clean", "html", "css", "js", "plugin"], function () {
*/
gulp.task("default", ["dist"], function () {
return gulp.src("tmp", {read: false}).pipe(clean());
});
});
1 change: 0 additions & 1 deletion js/youtube.min.js

This file was deleted.

0 comments on commit 2cf20d7

Please sign in to comment.