summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorSatsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>2020-04-26 10:35:47 +0900
committerGitHub <noreply@github.com>2020-04-26 10:35:47 +0900
commitf08d7df419545ee77fa9e2bea38ed6efda1dd4e5 (patch)
tree88400af3ebf7e578826025562bba26dd2a079048 /gulpfile.ts
parentSupports Node v14 (#6294) (diff)
downloadsharkey-f08d7df419545ee77fa9e2bea38ed6efda1dd4e5.tar.gz
sharkey-f08d7df419545ee77fa9e2bea38ed6efda1dd4e5.tar.bz2
sharkey-f08d7df419545ee77fa9e2bea38ed6efda1dd4e5.zip
Update dependencies 🚀 (#6297)
* chore: Update dependencies 🚀 Make everything is up-to-date * chore: Update dependencies 🚀 Good Bye, core-js@2 ! * packaging * Fix test * fix build * fix test * use default reporter * fix mocha is keep running after test * Revert back is-promise https://github.com/then/is-promise/issues/12 * Refresh
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index 989093cea7..2bd61cad2d 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -5,7 +5,6 @@
import * as fs from 'fs';
import * as gulp from 'gulp';
import * as ts from 'gulp-typescript';
-import * as mocha from 'gulp-mocha';
import * as rimraf from 'rimraf';
import * as rename from 'gulp-rename';
const cleanCSS = require('gulp-clean-css');
@@ -93,14 +92,4 @@ gulp.task('build', gulp.parallel(
'build:client',
));
-gulp.task('mocha', () =>
- gulp.src('./test/**/*.ts')
- .pipe(mocha({
- exit: true,
- require: 'ts-node/register'
- } as any))
-);
-
-gulp.task('test', gulp.task('mocha'));
-
gulp.task('default', gulp.task('build'));