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:
@ -1,7 +1,5 @@
|
||||
# n8n-nodes-strike
|
||||
|
||||

|
||||
|
||||
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
|
||||
|
||||
BIN
dist/nodes/Strike/strike.png
vendored
Normal file
BIN
dist/nodes/Strike/strike.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
@ -1,7 +1,7 @@
|
||||
const { src, dest } = require('gulp');
|
||||
|
||||
function buildIcons() {
|
||||
return src('nodes/**/*.svg').pipe(dest('dist/nodes'));
|
||||
return src('nodes/**/*.{svg,png}').pipe(dest('dist/nodes'));
|
||||
}
|
||||
|
||||
exports['build:icons'] = buildIcons;
|
||||
|
||||
Reference in New Issue
Block a user