summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-19 19:01:30 +0900
committerGitHub <noreply@github.com>2022-12-19 19:01:30 +0900
commit917ef465a5520137b478ffcf16af5a9e717d7a40 (patch)
tree875796c757aa058e05ad9d50691f04e16ccd8db0 /gulpfile.js
parentfix(client): add missing ref for MkButton (#9357) (diff)
downloadmisskey-917ef465a5520137b478ffcf16af5a9e717d7a40.tar.gz
misskey-917ef465a5520137b478ffcf16af5a9e717d7a40.tar.bz2
misskey-917ef465a5520137b478ffcf16af5a9e717d7a40.zip
Use tabler icons (#9354)
* wip * wip * wip * Update style.scss * wip * wip * wip * wip
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 90f8ebaabe..07a8a99d69 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -19,8 +19,8 @@ gulp.task('copy:client:fonts', () =>
gulp.src('./packages/client/node_modules/three/examples/fonts/**/*').pipe(gulp.dest('./built/_client_dist_/fonts/'))
);
-gulp.task('copy:client:fontawesome', () =>
- gulp.src('./packages/client/node_modules/@fortawesome/fontawesome-free/**/*').pipe(gulp.dest('./built/_client_dist_/fontawesome/'))
+gulp.task('copy:client:tabler-icons', () =>
+ gulp.src('./packages/client/node_modules/@tabler/icons/iconfont/**/*').pipe(gulp.dest('./built/_client_dist_/tabler-icons/'))
);
gulp.task('copy:client:locales', cb => {
@@ -53,7 +53,7 @@ gulp.task('build:backend:style', () => {
});
gulp.task('build', gulp.parallel(
- 'copy:client:locales', 'copy:backend:views', 'build:backend:script', 'build:backend:style', 'copy:client:fonts', 'copy:client:fontawesome'
+ 'copy:client:locales', 'copy:backend:views', 'build:backend:script', 'build:backend:style', 'copy:client:fonts', 'copy:client:tabler-icons'
));
gulp.task('default', gulp.task('build'));