mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 14:22:26 -05:00
6 lines
185 B
JavaScript
6 lines
185 B
JavaScript
const { task, src, dest } = require('gulp');
|
|
|
|
task('build:icons', function () {
|
|
return src(['nodes/**/*.png', 'nodes/**/*.svg'], { base: 'nodes' })
|
|
.pipe(dest('dist/nodes'));
|
|
});
|