You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
10 years ago
|
var gulp = require('gulp');
|
||
|
var less = require('gulp-less');
|
||
|
var print = require('gulp-print');
|
||
|
|
||
|
var paths = require('./paths');
|
||
|
|
||
|
gulp.task('less', function () {
|
||
|
return gulp.src([
|
||
|
paths.src.content + 'bootstrap.less',
|
||
|
paths.src.content + 'theme.less',
|
||
|
paths.src.content + 'overrides.less',
|
||
|
paths.src.root + 'Series/series.less',
|
||
|
paths.src.root + 'History/history.less',
|
||
|
paths.src.root + 'AddSeries/addSeries.less',
|
||
|
paths.src.root + 'Calendar/calendar.less',
|
||
|
paths.src.root + 'Cells/cells.less',
|
||
|
paths.src.root + 'Settings/settings.less',
|
||
|
paths.src.root + 'System/Logs/logs.less',
|
||
|
paths.src.root + 'System/Update/update.less',
|
||
|
])
|
||
|
.pipe(print())
|
||
|
.pipe(less({
|
||
|
dumpLineNumbers: 'false',
|
||
|
compress: true,
|
||
|
yuicompress: true,
|
||
|
ieCompat: true,
|
||
|
strictImports: true
|
||
|
}))
|
||
|
.pipe(gulp.dest(paths.dest.content));
|
||
|
});
|