Skip to content

Commit ac4e911

Browse files
authored
Merge pull request #148 from BuildFire/fix-videogular-theme
Fix videogular theme
2 parents 5d219a4 + ab23a50 commit ac4e911

File tree

8 files changed

+83
-3
lines changed

8 files changed

+83
-3
lines changed

gulpfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@ gulp.task('resources', function () {
199199
.pipe(gulp.dest(destinationFolder));
200200
});
201201

202+
gulp.task('videogularTheme', function () {
203+
return gulp.src(['widget/assets/css/videogular/**', 'widget/assets/css/videogular/**/*.*'], {base: '.'})
204+
.pipe(gulp.dest(destinationFolder));
205+
});
206+
202207
gulp.task('widgetIcons', function () {
203208
return gulp.src(['widget/assets/css/icons/*.*'], {base: '.'})
204209
.pipe(gulp.dest(destinationFolder));
@@ -211,7 +216,7 @@ gulp.task('images', function () {
211216
});
212217

213218

214-
var buildTasksToRun = ['html', 'resources', 'images', 'widgetIcons'];
219+
var buildTasksToRun = ['html', 'resources', 'images', 'videogularTheme', 'widgetIcons'];
215220

216221
[...cssInjection, ...cssTasks].forEach(function (task) {
217222
buildTasksToRun.push(task.name)
Lines changed: 37 additions & 0 deletions
Loading
2.48 KB
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Loading
2.32 KB
Binary file not shown.
1.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)