From 60b9632c0d8a4b98527596f68149bf7a019dbee9 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 05:31:12 +0000 Subject: [PATCH 1/3] feat: Updated package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 44145dbb5ee3b..1334f9fba596e 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "lerna exec npm run build", "dev": "lerna exec npm run dev --parallel", "clean:dist": "lerna exec -- rimraf ./dist", - "optimize-svg": "find ./packages -name '*.svg' -print0 | xargs -0 -P16 -L20 npx svgo", + "optimize-svg": "find ./packages -name '*.svg' -print0 | xargs -0 -P16 -L20 npx svgo" "start": "run-script-os", "start:default": "cd packages/cli/bin && ./n8n", "start:windows": "cd packages/cli/bin && n8n", From 920d8f02f79e9c56ec4b5f83c12b0c2493c45561 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 05:31:29 +0000 Subject: [PATCH 2/3] feat: Updated docker/images/n8n-custom/Dockerfile --- docker/images/n8n-custom/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/images/n8n-custom/Dockerfile b/docker/images/n8n-custom/Dockerfile index 05d08a7db5fc6..ed2e45b675e58 100644 --- a/docker/images/n8n-custom/Dockerfile +++ b/docker/images/n8n-custom/Dockerfile @@ -20,7 +20,7 @@ COPY packages/workflow/ ./packages/workflow/ RUN rm -rf node_modules packages/*/node_modules packages/*/dist RUN npm install --production --loglevel notice -RUN lerna bootstrap --hoist -- --production +RUN lerna bootstrap --hoist --no-ci -- --production RUN npm run build From de1f7709118d3c802a93a2f13632c9fdf3850be0 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 05:31:53 +0000 Subject: [PATCH 3/3] feat: Updated CONTRIBUTING.md --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 830a3b6ae5e94..c310ee122e0d9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -106,7 +106,8 @@ checked out and set up: 1. Install all dependencies of all modules and link them together: ``` - lerna bootstrap --hoist + npm install -g lerna +lerna bootstrap --hoist --no-ci ``` 1. Build all the code: