LEFT | RIGHT |
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 Loading... |
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"]); |
LEFT | RIGHT |