Commit fb2f9ddd authored by Liang Ding's avatar Liang Ding

🐛 Fix #12522

parent 9cca184d
...@@ -19,8 +19,9 @@ ...@@ -19,8 +19,9 @@
/** /**
* @file frontend tool. * @file frontend tool.
* *
* @author <a href="mailto:liliyuan@fangstar.net">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 1.6.0.0, Sep 1, 2018 * @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.6.1.0, Sep 24, 2018
*/ */
'use strict' 'use strict'
...@@ -67,7 +68,7 @@ gulp.task('compress', function () { ...@@ -67,7 +68,7 @@ gulp.task('compress', function () {
'./src/main/webapp/js/lib/to-markdown.js', './src/main/webapp/js/lib/to-markdown.js',
'./src/main/webapp/js/lib/highlight.js-9.6.0/highlight.pack.js'] './src/main/webapp/js/lib/highlight.js-9.6.0/highlight.pack.js']
gulp.src(jsJqueryUpload). gulp.src(jsJqueryUpload).
pipe(uglify()). pipe(uglify({output: {ascii_only:true}})). // https://github.com/b3log/solo/issues/12522
pipe(concat('admin-lib.min.js')). pipe(concat('admin-lib.min.js')).
pipe(gulp.dest('./src/main/webapp/js/lib/compress/')) pipe(gulp.dest('./src/main/webapp/js/lib/compress/'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment