diff options
author | kumavis <aaron@kumavis.me> | 2016-05-11 07:51:49 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2016-05-11 07:52:07 +0800 |
commit | c2c33ff6cdabfd6f766c57c7d6d142074bf305ae (patch) | |
tree | 5da17157ccdda2496b711935ffcb7f361d9900b5 /gulpfile.js | |
parent | 39403eb79471e463d9e9467f7dc296fcb715292b (diff) | |
download | tangerine-wallet-browser-c2c33ff6cdabfd6f766c57c7d6d142074bf305ae.tar.gz tangerine-wallet-browser-c2c33ff6cdabfd6f766c57c7d6d142074bf305ae.tar.zst tangerine-wallet-browser-c2c33ff6cdabfd6f766c57c7d6d142074bf305ae.zip |
ui - redesign - app header + accounts selection
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index c4e9630ea..2322be608 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -30,6 +30,10 @@ gulp.task('copy:images', copyTask({ source: './app/images/', destination: './dist/images', })) +gulp.task('copy:fonts', copyTask({ + source: './app/fonts/', + destination: './dist/fonts', +})) gulp.task('copy:reload', copyTask({ source: './app/scripts/', destination: './dist/scripts', @@ -40,7 +44,7 @@ gulp.task('copy:root', copyTask({ destination: './dist', pattern: '/*', })) -gulp.task('copy', gulp.parallel('copy:locales','copy:images','copy:reload','copy:root')) +gulp.task('copy', gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root')) gulp.task('copy:watch', function(){ gulp.watch(['./app/{_locales,images}/', './app/scripts/chromereload.js', './app/*.{html,json}'], gulp.series('copy')) }) |