From 5af46d006878fe8706156ba5b0495f502df31730 Mon Sep 17 00:00:00 2001 From: Jack-sh1 Date: Tue, 21 Apr 2026 15:42:06 +0800 Subject: [PATCH 1/3] 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/3] 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', From b7749abc2c9eb8521e78f2475e60d811dc2346b9 Mon Sep 17 00:00:00 2001 From: Jack-sh1 Date: Tue, 21 Apr 2026 17:54:12 +0800 Subject: [PATCH 3/3] feat: add nuxt.schema to nuxt.config nesting Closes #248 --- update.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.mjs b/update.mjs index f5ac5f0..ac8e8d9 100644 --- a/update.mjs +++ b/update.mjs @@ -250,7 +250,7 @@ const frameworks = { 'astro.config.*': [], 'gatsby-config.*': ['gatsby-browser.*', 'gatsby-node.*', 'gatsby-ssr.*', 'gatsby-transformer.*'], 'next.config.*': ['next-env.d.ts', 'next-i18next.config.*'], - 'nuxt.config.*': ['.nuxtignore', '.nuxtrc'], + 'nuxt.config.*': ['.nuxtignore', '.nuxtrc', 'nuxt.schema.*'], 'quasar.conf*': ['quasar.extensions.json'], 'remix.config.*': ['remix.*'], 'svelte.config.*': ['mdsvex.config.js', 'vite.config.*', 'houdini.config.*'],