n8n-nodes-runrunit 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<defs>
|
|
3
|
+
<filter id="shadow-dark" x="-20%" y="-20%" width="140%" height="140%">
|
|
4
|
+
<feDropShadow dx="-25" dy="25" stdDeviation="15" flood-color="#1a2530" flood-opacity="0.8"/>
|
|
5
|
+
</filter>
|
|
6
|
+
</defs>
|
|
7
|
+
|
|
8
|
+
<g filter="url(#shadow-dark)">
|
|
9
|
+
<rect x="32" y="32" width="448" height="448" rx="64" ry="64" fill="#2d3e50"/>
|
|
10
|
+
|
|
11
|
+
<path d="M372,256c0,70.1-50.2,127.3-116.5,127.3S139,326.1,139,256s50.2-127.3,116.5-127.3S372,185.9,372,256ZM193.3,256c0,44,31.2,77.3,69.2,77.3s69.2-33.3,69.2-77.3-31.2-77.3-69.2-77.3S193.3,212,193.3,256Z" fill="#ffffff"/>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<defs>
|
|
3
|
+
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
|
4
|
+
<feDropShadow dx="-25" dy="25" stdDeviation="10" flood-color="#ddd" flood-opacity="0.7"/>
|
|
5
|
+
</filter>
|
|
6
|
+
</defs>
|
|
7
|
+
|
|
8
|
+
<g filter="url(#shadow)">
|
|
9
|
+
<rect x="32" y="32" width="448" height="448" rx="64" ry="64" fill="#ffffff"/>
|
|
10
|
+
|
|
11
|
+
<path d="M372,256c0,70.1-50.2,127.3-116.5,127.3S139,326.1,139,256s50.2-127.3,116.5-127.3S372,185.9,372,256ZM193.3,256c0,44,31.2,77.3,69.2,77.3s69.2-33.3,69.2-77.3-31.2-77.3-69.2-77.3S193.3,212,193.3,256Z" fill="#ff4c15"/>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-runrunit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "n8n nodes for Runrun.it API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/YeshShareDEV/n8n-nodes-runrun.it",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"main": "dist/nodes/RunrunIt/RunrunIt.node.js",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true});\"",
|
|
14
|
-
"build": "npm run clean && n8n-node build",
|
|
14
|
+
"build": "npm run clean && n8n-node build && npm run copy:assets",
|
|
15
|
+
"copy:assets": "node -e \"const fs=require('fs'); const path=require('path'); const dest='dist/nodes/RunrunIt'; if(!fs.existsSync(dest)) fs.mkdirSync(dest, {recursive:true}); fs.readdirSync('nodes/RunrunIt').filter(f => f.endsWith('.svg') || f.endsWith('.png')).forEach(f => fs.copyFileSync(path.join('nodes/RunrunIt', f), path.join(dest, f)));\"",
|
|
15
16
|
"prepublishOnly": "npm run build",
|
|
16
17
|
"lint": "n8n-node lint",
|
|
17
18
|
"lint:fix": "n8n-node lint --fix",
|