mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 11:01:22 +03:00
0f09faa1bc
- Removed Yarn dependency and replaced with PNPM - Changed Frontend to render via vite
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
const { src, dest } = require('gulp')
|
|
|
|
function copyIcons() {
|
|
return src(['nodes/**/*.{jpg,png,svg}']).pipe(dest('dist/nodes'))
|
|
}
|
|
|
|
exports.default = copyIcons
|