@limetech/n8n-nodes-lime 3.2.1 → 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 +7 -0
- package/package.json +1 -1
- package/.devcontainer/devcontainer.json +0 -44
- package/docker-compose.yml +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [3.2.1](https://github.com/Lundalogik/lime-n8n/compare/v3.2.0...v3.2.1) (2026-01-30)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -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
|
-
}
|
package/docker-compose.yml
DELETED
|
@@ -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:
|