From 072f47e6cb474878168b1085bdc21bdace7939b4 Mon Sep 17 00:00:00 2001 From: Dnny44 Date: Mon, 6 Apr 2026 13:32:47 -0500 Subject: [PATCH] Add gulpfile and svg --- gulpfile.js | 8 ++++++++ nodes/Jellyfin/jellyfin.svg | 1 + 2 files changed, 9 insertions(+) create mode 100644 gulpfile.js create mode 100644 nodes/Jellyfin/jellyfin.svg diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..b62cce9 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,8 @@ +const { src, dest } = require('gulp'); + +function copyIcons() { + return src('nodes/**/*.{png,svg}') + .pipe(dest('dist/nodes')); +} + +exports['copy:icons'] = copyIcons; \ No newline at end of file diff --git a/nodes/Jellyfin/jellyfin.svg b/nodes/Jellyfin/jellyfin.svg new file mode 100644 index 0000000..f1703bb --- /dev/null +++ b/nodes/Jellyfin/jellyfin.svg @@ -0,0 +1 @@ + \ No newline at end of file