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

Delta Between Two Patch Sets: gulpfile.js

Issue 29742555: Noissue - Use Source Sans Pro font files from website-defaults (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Left Patch Set: Created April 4, 2018, 8:59 a.m.
Right Patch Set: Rebase Created April 6, 2018, 1:25 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « README.md ('k') | static/src/fonts/Source-Sans-Pro-400/LICENSE.txt » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /*! 1 /*!
2 * This file is part of help.eyeo.com. 2 * This file is part of help.eyeo.com.
3 * Copyright (C) 2017-present eyeo GmbH 3 * Copyright (C) 2017-present eyeo GmbH
4 * 4 *
5 * help.eyeo.com is free software: you can redistribute it and/or modify 5 * help.eyeo.com is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or 7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version. 8 * (at your option) any later version.
9 * 9 *
10 * help.eyeo.com is distributed in the hope that it will be useful, 10 * help.eyeo.com is distributed in the hope that it will be useful,
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 * Watch 79 * Watch
80 ******************************************************************************/ 80 ******************************************************************************/
81 81
82 gulp.task("watch", function() { 82 gulp.task("watch", function() {
83 gulp.watch("./static/src/scss/**/*.scss", ["css"]); 83 gulp.watch("./static/src/scss/**/*.scss", ["css"]);
84 gulp.watch("./static/src/js/**/*.js", ["js"]); 84 gulp.watch("./static/src/js/**/*.js", ["js"]);
85 gulp.watch("./static/src/img/**", ["img"]); 85 gulp.watch("./static/src/img/**", ["img"]);
86 }); 86 });
87 87
88 /****************************************************************************** 88 /******************************************************************************
89 * Build
90 ******************************************************************************/
91
92 gulp.task("build", ["css", "js", "img"]);
93
94 /******************************************************************************
89 * Default 95 * Default
90 ******************************************************************************/ 96 ******************************************************************************/
91 97
92 gulp.task("default", ["css", "js", "img", "watch"]); 98 gulp.task("default", ["build", "watch"]);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld