@limetech/n8n-nodes-lime 3.2.0 → 3.2.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.2.2](https://github.com/Lundalogik/lime-n8n/compare/v3.2.1...v3.2.2) (2026-02-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix wrong dist path in docker-compose ([59ede56](https://github.com/Lundalogik/lime-n8n/commit/59ede5601917c90f88fc2bed7bad7d36a7e09a28))
7
+
8
+ ## [3.2.1](https://github.com/Lundalogik/lime-n8n/compare/v3.2.0...v3.2.1) (2026-01-30)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * readme format ([7e1b47d](https://github.com/Lundalogik/lime-n8n/commit/7e1b47ddb22fe42549e6a0423b47e1b1dd7f293a))
14
+
1
15
  # [3.2.0](https://github.com/Lundalogik/lime-n8n/compare/v3.1.0...v3.2.0) (2026-01-27)
2
16
 
3
17
 
package/README.md CHANGED
@@ -22,7 +22,7 @@ On first create, the Dev Container will:
22
22
 
23
23
  When the container is up, n8n is available at:
24
24
 
25
- - http://localhost:5678
25
+ - <http://localhost:5678>
26
26
 
27
27
  ## Development Workflow
28
28
 
@@ -59,6 +59,29 @@ The compiled output in `dist/` is mounted into the n8n container and exposed to
59
59
 
60
60
  n8n state is persisted in a named Docker volume (`n8n-data`) managed by the Dev Container composition.
61
61
 
62
+ ## Requirement of restart of dev env
63
+
64
+ During development you will have to restart development n8n server because of how n8n actually loads nodes:
65
+
66
+ - Custom nodes are loaded once at startup
67
+
68
+ - Node metadata (description, properties, inputs/outputs) is cached
69
+
70
+ - Executions reuse the already-loaded JS code
71
+
72
+ - So n8n must be restarted to see changes in:
73
+ - description
74
+ - properties
75
+ - credentials definitions
76
+ - icons, display options, etc.
77
+
78
+ - This is true for:
79
+ - custom nodes in ~/.n8n/nodes and ~/.n8n/custom
80
+ - nodes baked into a Docker image
81
+ - community nodes
82
+
83
+ If you rebuild and need n8n to reload the updated custom nodes, restart n8n from terminal:
84
+
62
85
  ## Troubleshooting
63
86
 
64
87
  - If `npm ci` fails due to permissions on `node_modules`, rebuild the container (the Dev Container uses a named volume for `node_modules`).
@@ -66,4 +89,8 @@ n8n state is persisted in a named Docker volume (`n8n-data`) managed by the Dev
66
89
 
67
90
  ## References
68
91
 
69
- - n8n node authoring docs: https://docs.n8n.io/integrations/creating-nodes/
92
+ - n8n node authoring docs: <https://docs.n8n.io/integrations/creating-nodes/>
93
+
94
+ ## No devcontainers?
95
+
96
+ Just run `docker-compose up` - the rest is similar to work with devcontainer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/n8n-nodes-lime",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "description": "n8n node to connect to Lime CRM",
5
5
  "license": "Apache-2.0",
6
6
  "main": "nodes/index.ts",
@@ -1,44 +0,0 @@
1
- {
2
- "name": "LIME CRM n8n Nodes",
3
- "dockerComposeFile": "docker-compose.yml",
4
- "service": "devcontainer",
5
- "workspaceFolder": "/workspace",
6
- "customizations": {
7
- "vscode": {
8
- "extensions": [
9
- "dbaeumer.vscode-eslint",
10
- "esbenp.prettier-vscode",
11
- "orta.vscode-jest",
12
- "ms-azuretools.vscode-docker"
13
- ],
14
- "settings": {
15
- "editor.formatOnSave": true,
16
- "editor.defaultFormatter": "esbenp.prettier-vscode",
17
- "files.insertFinalNewline": true,
18
- "files.trimFinalNewlines": false,
19
- "editor.codeActionsOnSave": {
20
- "source.fixAll.eslint": "explicit"
21
- },
22
- "typescript.tsdk": "node_modules/typescript/lib"
23
- }
24
- }
25
- },
26
- "postCreateCommand": "git config --global --add safe.directory /workspace && sudo chown -R node:node dist && sudo chown -R node:node /workspace/node_modules && npm ci && npm run build && docker restart n8n",
27
- "postStartCommand": "",
28
- "forwardPorts": [5678],
29
- "portsAttributes": {
30
- "5678": {
31
- "label": "n8n",
32
- "onAutoForward": "openBrowser"
33
- }
34
- },
35
- "remoteUser": "node",
36
- "features": {
37
- "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
38
- "moby": false
39
- }
40
- },
41
- "remoteEnv": {
42
- "DOCKER_API_VERSION": "1.43"
43
- }
44
- }
@@ -1,27 +0,0 @@
1
- services:
2
- devcontainer:
3
- image: mcr.microsoft.com/devcontainers/typescript-node:24
4
- volumes:
5
- - ..:/workspace:cached
6
- - node_modules:/workspace/node_modules
7
- command: sleep infinity
8
- depends_on:
9
- - n8n
10
-
11
- n8n:
12
- image: n8nio/n8n:1
13
- container_name: n8n
14
- ports:
15
- - '5678:5678'
16
- environment:
17
- - N8N_LOG_LEVEL=debug
18
- - N8N_CUSTOM_EXTENSIONS=/home/node/.n8n/custom
19
- - GENERIC_TIMEZONE=Europe/Stockholm
20
- volumes:
21
- - n8n-data:/home/node/.n8n
22
- - ../dist:/home/node/.n8n/custom/dist
23
- restart: unless-stopped
24
-
25
- volumes:
26
- n8n-data:
27
- node_modules: