blob: 28a789733f89b46f63269a53ea0141b2b3c91f8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import {join} from 'path';
import {APP_SRC, APP_DEST} from '../config';
export = function buildImagesDev(gulp, plugins) {
return function () {
return gulp.src([
join(APP_SRC, '**/*.gif'),
join(APP_SRC, '**/*.jpg'),
join(APP_SRC, '**/*.png'),
join(APP_SRC, '**/*.svg')
])
.pipe(gulp.dest(APP_DEST));
};
}
|