mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 14:12:24 -05:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
const { task, src, dest } = require('gulp');
|
|
|
|
task('build:icons', copyIcons);
|
|
|
|
function copyIcons() {
|
|
src('nodes/**/*.{png,svg}').pipe(dest('dist/nodes'));
|
|
|
|
return src('credentials/**/*.{png,svg}').pipe(dest('dist/credentials'));
|
|
}
|
|
|
|
// TODO: Add i18n to pipeline
|