You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
937 B
JavaScript
40 lines
937 B
JavaScript
5 years ago
|
const {src, dest, watch, series, task} = require('gulp');
|
||
|
const ts = require('gulp-typescript');
|
||
|
const del = require('delete');
|
||
|
|
||
|
/**
|
||
|
* Clears the dist folder by deleting all files inside.
|
||
|
* @param cb
|
||
|
*/
|
||
|
function clearDist(cb) {
|
||
|
del('dist/*', cb);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Typescript compilation task.
|
||
|
* @returns {*}
|
||
|
*/
|
||
|
function compileTypescript() {
|
||
|
let tsProject = ts.createProject('tsconfig.json');
|
||
|
let tsResult = tsProject.src().pipe(tsProject());
|
||
|
return tsResult
|
||
|
//.pipe(minify())
|
||
|
.pipe(dest('dist'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Task for moving all remaining file from source to dist that don't need procession.
|
||
|
* @returns {*}
|
||
|
*/
|
||
|
function moveRemaining() {
|
||
|
return src(['src/**/*', '!src/**/*.ts'])
|
||
|
.pipe(dest('dist'));
|
||
|
}
|
||
|
|
||
|
task('default', series(clearDist, compileTypescript, moveRemaining));
|
||
|
|
||
|
task('watch', () => {
|
||
|
watch('**/*.ts', compileTypescript);
|
||
|
watch(['src/**/*', '!src/**/*.ts'], moveRemaining());
|
||
|
});
|