Fix icon build process and README

- Update gulpfile to copy PNG files to dist
- Remove broken image link from README
- Rebuild with PNG icon included

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-10 11:30:40 +01:00
parent 6492ab648f
commit 0e5dc5548c
3 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
# n8n-nodes-strike # n8n-nodes-strike
![Strike Logo](https://strike.me/assets/images/logo.png)
This is an n8n community node for integrating with the [Strike API](https://strike.me), enabling Bitcoin and Lightning Network payment operations within your n8n workflows. This is an n8n community node for integrating with the [Strike API](https://strike.me), enabling Bitcoin and Lightning Network payment operations within your n8n workflows.
## ⚠️ Important Disclaimer ## ⚠️ Important Disclaimer

BIN
dist/nodes/Strike/strike.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,7 +1,7 @@
const { src, dest } = require('gulp'); const { src, dest } = require('gulp');
function buildIcons() { function buildIcons() {
return src('nodes/**/*.svg').pipe(dest('dist/nodes')); return src('nodes/**/*.{svg,png}').pipe(dest('dist/nodes'));
} }
exports['build:icons'] = buildIcons; exports['build:icons'] = buildIcons;