Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING: remove deprecated files config #25535

Merged
merged 4 commits into from
Sep 9, 2024

Conversation

dsherret
Copy link
Member

@dsherret dsherret commented Sep 9, 2024

The long form "files" config has been flattened into the parent.

Old:

{
  "test": {
    "files": {
      "include": ["**/*.ts"],
      "exclude": ["ignore.ts"]
    }
  }
}

New:

{
  "test": {
    "include": ["**/*.ts"],
    "exclude": ["ignore.ts"]
  }
}

This was deprecated some time ago, but we're removing it now in Deno 2.0.

Closes #25415

@dsherret dsherret enabled auto-merge (squash) September 9, 2024 16:06
@dsherret dsherret merged commit 1e0ac60 into denoland:main Sep 9, 2024
17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Deprecate old "files" configuration in deno.json
2 participants