mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-22 03:44:19 +01:00
Move to xterm.js for CJK and IME support (#22)
This commit is contained in:
10
html/gulpfile.js
Normal file
10
html/gulpfile.js
Normal file
@@ -0,0 +1,10 @@
|
||||
var gulp = require('gulp'),
|
||||
inlinesource = require('gulp-inline-source');
|
||||
|
||||
gulp.task('inlinesource', function () {
|
||||
return gulp.src('*.html')
|
||||
.pipe(inlinesource())
|
||||
.pipe(gulp.dest('../src'));
|
||||
});
|
||||
|
||||
gulp.task('default', ['inlinesource']);
|
||||
Reference in New Issue
Block a user