Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion update.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ const workspaces = [
'.simple-git-hooks*',
'.tazerc*',
'.tool-versions',
'.vsls.json',
'.yarnrc*',
'*.code-workspace',
'bower.json',
Expand Down Expand Up @@ -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.*'],
Expand Down Expand Up @@ -385,6 +386,7 @@ const dotnetProject = [
'*.config',
'appsettings.*',
'bundleconfig.json',
'packages.lock.json',
]

const pubspecYAML = [
Expand All @@ -404,6 +406,7 @@ const elixir = [
'.dialyzer_ignore.exs',
'.iex.exs',
'.tool-versions',

]

const pythonConfigs = [
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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),
Expand Down
Loading