2019-10-03 08:53:03 +02:00
|
|
|
const { src, dest } = require('gulp');
|
|
|
|
|
|
|
|
|
|
function copyIcons() {
|
2022-01-17 18:21:18 +01:00
|
|
|
src('nodes/**/*.{png,svg}')
|
|
|
|
|
.pipe(dest('dist/nodes'))
|
|
|
|
|
|
|
|
|
|
return src('credentials/**/*.{png,svg}')
|
|
|
|
|
.pipe(dest('dist/credentials'));
|
2019-10-03 08:53:03 +02:00
|
|
|
}
|
|
|
|
|
|
2022-01-17 18:21:18 +01:00
|
|
|
exports.default = copyIcons;
|