From 5af46d006878fe8706156ba5b0495f502df31730 Mon Sep 17 00:00:00 2001 From: Jack-sh1 Date: Tue, 21 Apr 2026 15:42:06 +0800 Subject: [PATCH 1/2] feat: add packages.lock.json and *.fsproj to dotnet project nesting Closes #192 --- update.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update.mjs b/update.mjs index f2df134..bbd8d20 100644 --- a/update.mjs +++ b/update.mjs @@ -385,6 +385,7 @@ const dotnetProject = [ '*.config', 'appsettings.*', 'bundleconfig.json', + 'packages.lock.json', ] const pubspecYAML = [ @@ -627,6 +628,7 @@ const full = sortObject({ 'go.mod': stringify(gofile), 'composer.json': stringify(composer), '*.csproj': stringify(dotnetProject), + '*.fsproj': stringify(dotnetProject), '*.vbproj': stringify(dotnetProject), 'mix.exs': stringify(elixir), 'pyproject.toml': stringify(pyprojecttoml), From 2c64bdbbd341bd69707e8c34c4b0c5ae62af2185 Mon Sep 17 00:00:00 2001 From: Jack-sh1 Date: Tue, 21 Apr 2026 15:48:19 +0800 Subject: [PATCH 2/2] feat: add justfile nesting support Closes #293 --- update.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/update.mjs b/update.mjs index bbd8d20..f5ac5f0 100644 --- a/update.mjs +++ b/update.mjs @@ -557,6 +557,7 @@ const base = { 'go.mod': 'go.sum', 'go.work': 'go.work.sum', 'I*.cs': '$(capture).cs', + 'justfile': '*.just, .justfile', 'Makefile': '*.mk', 'pom.xml': 'mvnw*', 'shims.d.ts': '*.d.ts',