n8n-nodes-perfexcrm 0.1.7 → 0.1.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-perfexcrm",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "n8n nodes for PerfexCRM API and Webhooks integration",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -28,7 +28,8 @@
28
28
  },
29
29
  "main": "index.js",
30
30
  "scripts": {
31
- "build": "tsc",
31
+ "build": "tsc && npm run copy:icons",
32
+ "copy:icons": "node -e \"const fs=require('fs');const path=require('path');['perfexcrm.svg','perfexcrm.png'].forEach(f=>{const src=path.join('nodes','PerfexCrm',f);const dst=path.join('dist','nodes','PerfexCrm',f);if(fs.existsSync(src))fs.copyFileSync(src,dst);});\"",
32
33
  "dev": "tsc --watch",
33
34
  "format": "prettier nodes/**/*.ts credentials/**/*.ts --write",
34
35
  "lint": "eslint nodes/**/*.ts credentials/**/*.ts --ext .ts",
@@ -59,6 +60,6 @@
59
60
  "n8n-workflow": "^1.0.0",
60
61
  "prettier": "^2.7.1",
61
62
  "sharp": "^0.34.3",
62
- "typescript": "^4.8.4"
63
+ "typescript": "^5.8.3"
63
64
  }
64
65
  }