Skip to content

Commit

Permalink
resolved format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeFRF committed Nov 6, 2024
1 parent 5ced57c commit 64525cc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@ const buildPopup = async () => {
for await (const file of klaw("./popup", {
filter: (filePath) => {
const dirs = filePath.split(path.sep);
const shouldExclude = dirs.includes("out") ||
dirs.includes("node_modules") ||
dirs.includes(".next") ||
dirs.includes(".parcel-cache");
return !shouldExclude
const shouldExclude =
dirs.includes("out") ||
dirs.includes("node_modules") ||
dirs.includes(".next") ||
dirs.includes(".parcel-cache");
return !shouldExclude;
},
})) {
if (
Expand Down

0 comments on commit 64525cc

Please sign in to comment.