diff --git a/update.mjs b/update.mjs index f2df134..5b08ff3 100644 --- a/update.mjs +++ b/update.mjs @@ -146,6 +146,7 @@ const workspaces = [ '.simple-git-hooks*', '.tazerc*', '.tool-versions', + '.vsls.json', '.yarnrc*', '*.code-workspace', 'bower.json', @@ -250,7 +251,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.*'], @@ -385,6 +386,7 @@ const dotnetProject = [ '*.config', 'appsettings.*', 'bundleconfig.json', + 'packages.lock.json', ] const pubspecYAML = [ @@ -404,6 +406,7 @@ const elixir = [ '.dialyzer_ignore.exs', '.iex.exs', '.tool-versions', + ] const pythonConfigs = [ @@ -556,6 +559,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', @@ -627,6 +631,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),