Skip to content

Commit

Permalink
start fixing after bumping all dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tlein committed Nov 29, 2019
1 parent f80f718 commit 5f4330e
Show file tree
Hide file tree
Showing 21 changed files with 1,445 additions and 1,461 deletions.
13 changes: 3 additions & 10 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,9 @@ moveTask('electron', 'src/electron/**', 'build/electron');
moveTask('index', 'src/index.html', 'build');
moveTask('resources', 'resources/**', 'build/resources');

gulp.task('duckling', [
'index',
'electron',
'css',
'resources'
]);

gulp.task('default', [
'duckling'
]);
gulp.task('duckling', gulp.series('index', 'electron', 'css', 'resources'));

gulp.task('default', gulp.series('duckling'));

function swallowError (error) {
console.log(error.toString());
Expand Down
Loading

0 comments on commit 5f4330e

Please sign in to comment.