Typescript - Completed screen sharing indicator and fixed i18n usage issue

This commit is contained in:
Kiran Niranjan
2019-01-02 15:49:50 +05:30
parent 196ee2c0fe
commit c58678eeb2
22 changed files with 514 additions and 57 deletions

12
gulpfile.js Normal file
View File

@@ -0,0 +1,12 @@
const gulp = require('gulp');
const less = require('gulp-less');
const sourcemaps = require('gulp-sourcemaps');
const path = require('path');
gulp.task('less', function () {
return gulp.src('./src/**/*.less')
.pipe(sourcemaps.init())
.pipe(less())
.pipe(sourcemaps.write())
.pipe(gulp.dest(path.join(__dirname, 'src')));
});