mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Typescript - Completed screen sharing indicator and fixed i18n usage issue
This commit is contained in:
12
gulpfile.js
Normal file
12
gulpfile.js
Normal 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')));
|
||||
});
|
||||
Reference in New Issue
Block a user