diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-13 15:09:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-13 15:09:36 +0900 |
| commit | da280dd7c6ecf2bbd4699537a084f14ddda32bb9 (patch) | |
| tree | 59d02da593521de2d1caaecafe40d226f7e9ee2e /gulpfile.ts | |
| parent | [Client] :v: (diff) | |
| download | sharkey-da280dd7c6ecf2bbd4699537a084f14ddda32bb9.tar.gz sharkey-da280dd7c6ecf2bbd4699537a084f14ddda32bb9.tar.bz2 sharkey-da280dd7c6ecf2bbd4699537a084f14ddda32bb9.zip | |
Disable uglify temporaly to avoid unable build issue
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 ba0bc6c6d6..efb780ddc7 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -12,7 +12,7 @@ import * as glob from 'glob'; import * as es from 'event-stream'; import * as webpack from 'webpack-stream'; import cssnano = require('gulp-cssnano'); -import * as uglify from 'gulp-uglify'; +//import * as uglify from 'gulp-uglify'; import pug = require('gulp-pug'); import * as rimraf from 'rimraf'; import * as chalk from 'chalk'; @@ -131,7 +131,7 @@ gulp.task('build:client:scripts', () => webpack(require('./webpack.config'), require('webpack')) .pipe(gulp.dest('./built/web/resources/')) as any, gulp.src('./src/web/app/client/script.js') - .pipe(isProduction ? uglify() : gutil.noop()) + //.pipe(isProduction ? uglify() : gutil.noop()) .pipe(gulp.dest('./built/web/resources/client/')) as any ) ); |