Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: gulpfile.js

Issue 29742555: Noissue - Use Source Sans Pro font files from website-defaults (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Rebase Created April 6, 2018, 1:25 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | static/src/fonts/Source-Sans-Pro-400/LICENSE.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gulpfile.js
===================================================================
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -71,38 +71,28 @@
{cleanupIDs: true}
]
})
]))
.pipe(gulp.dest("./static/dist/img"));
});
/******************************************************************************
- * Fonts
- ******************************************************************************/
-
-gulp.task("fonts", function() {
- return gulp.src(["./static/src/fonts/**"])
- .pipe(gulp.dest("./static/dist/fonts"));
-});
-
-/******************************************************************************
* Watch
******************************************************************************/
gulp.task("watch", function() {
gulp.watch("./static/src/scss/**/*.scss", ["css"]);
gulp.watch("./static/src/js/**/*.js", ["js"]);
gulp.watch("./static/src/img/**", ["img"]);
- gulp.watch("./static/src/fonts/**", ["fonts"]);
});
/******************************************************************************
* Build
******************************************************************************/
-gulp.task("build", ["css", "js", "img", "fonts"]);
+gulp.task("build", ["css", "js", "img"]);
/******************************************************************************
* Default
******************************************************************************/
gulp.task("default", ["build", "watch"]);
« no previous file with comments | « README.md ('k') | static/src/fonts/Source-Sans-Pro-400/LICENSE.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld