Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis committed Nov 18, 2024
1 parent 6085c3d commit f48d80d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/makeWebpackConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,7 @@ module.exports = async (playroomConfig, options) => {
// Only apply VanillaExtract plugin to playroom's source `.css.ts` files
return (
/\.css\.ts$/i.test(filePath) &&
includePaths.some((includePath) =>
filePath.startsWith(includePath)
)
includePaths.some((includePath) => filePath.startsWith(includePath))
);
},
}),
Expand Down

0 comments on commit f48d80d

Please sign in to comment.