diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-06 19:59:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-06 19:59:14 +0900 |
| commit | 7940c0901d4acff93169f62f4b80d58b287ca48e (patch) | |
| tree | c7c7f18f2477ed8ca2bc5d3395cdb1ea758b2653 /gulpfile.ts | |
| parent | Remove needless dependent (diff) | |
| download | sharkey-7940c0901d4acff93169f62f4b80d58b287ca48e.tar.gz sharkey-7940c0901d4acff93169f62f4b80d58b287ca48e.tar.bz2 sharkey-7940c0901d4acff93169f62f4b80d58b287ca48e.zip | |
:v:
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 4ee5fbce0e..448b6b7fef 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -13,7 +13,7 @@ import cssnano = require('gulp-cssnano'); import * as uglifyComposer from 'gulp-uglify/composer'; import pug = require('gulp-pug'); import * as rimraf from 'rimraf'; -import * as chalk from 'chalk'; +import chalk from 'chalk'; import imagemin = require('gulp-imagemin'); import * as rename from 'gulp-rename'; import * as mocha from 'gulp-mocha'; @@ -123,7 +123,7 @@ gulp.task('build:client:script', () => .pipe(replace('VERSION', JSON.stringify(version))) .pipe(isProduction ? uglify({ toplevel: true - }) : gutil.noop()) + } as any) : gutil.noop()) .pipe(gulp.dest('./built/web/assets/')) as any ); |