From a3fdb4842f536d15a79f124362f939d0b7854f4b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 05:41:36 +0000 Subject: [PATCH 1/3] Update sass to v1.85.1 (#586) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 536a662..77a6474 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "khroma": "2.1.0", "nodemon": "3.1.9", "ora": "8.2.0", - "sass": "1.85.0" + "sass": "1.85.1" }, "node-red": { "version": ">=4.0", From ea9a344be7c519edd78b121b8ff67d6d43db1f87 Mon Sep 17 00:00:00 2001 From: Mauricio Bonani Date: Fri, 28 Feb 2025 11:12:57 -0500 Subject: [PATCH 2/3] Clone using the web URL (#587) --- lib/init.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/init.js b/lib/init.js index 914fc23..2591579 100644 --- a/lib/init.js +++ b/lib/init.js @@ -18,7 +18,7 @@ } await runner( - 'git clone --depth=1 --no-tags git@github.com:node-red/node-red.git', + 'git clone --depth=1 --no-tags --branch dev https://github.com/node-red/node-red.git', rootDir, 'Cloning Node-RED repository' ) @@ -34,7 +34,7 @@ if (!fs.existsSync(projectsDir)) { await makeDir(projectsDir, 'Creating Projects directory') await runner( - 'git clone git@github.com:node-red-contrib-themes/theme-dev-project.git', + 'git clone https://github.com/node-red-contrib-themes/theme-dev-project.git', projectsDir, 'Cloning theme development project repository' ) From 60d1ba2413e16fdc06e6217cc0d384d99372ff71 Mon Sep 17 00:00:00 2001 From: Mauricio Bonani Date: Sat, 1 Mar 2025 17:57:42 -0500 Subject: [PATCH 3/3] Check out the default branch when cloning (#588) --- lib/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init.js b/lib/init.js index 2591579..1b6349c 100644 --- a/lib/init.js +++ b/lib/init.js @@ -18,7 +18,7 @@ } await runner( - 'git clone --depth=1 --no-tags --branch dev https://github.com/node-red/node-red.git', + 'git clone --depth=1 --no-tags https://github.com/node-red/node-red.git', rootDir, 'Cloning Node-RED repository' )