Skip to content

Commit

Permalink
fix: exclude dot files by default
Browse files Browse the repository at this point in the history
BREAKING CHANGE: no dot files by default
  • Loading branch information
arlac77 committed Jan 13, 2025
1 parent 848d366 commit a8982eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/file-content-provider.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { FileSystemEntry } from "content-entry-filesystem";
import { asArray } from "../util.mjs";
import { ContentProvider } from "./content-provider.mjs";

const DEFAULT_PATTERN = ["**/*"];
const DEFAULT_PATTERN = ["**/*", "!.*"];

/**
* Content provided form the file system.
Expand Down

0 comments on commit a8982eb

Please sign in to comment.