Skip to content

Commit

Permalink
fix: exclude node_modules from ts tracking (#18117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Ritter authored Jan 25, 2022
1 parent 60db35c commit 9900e5a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/generate_frontend_ts_tasklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ while (directories.length) {
directories = directories.concat(
getDirectories("./")
.reverse() // For ABC order when pushed into the Array
.filter((name) => name !== "node_modules") // Don't include node_modules in our packages
.map((directory) => `${curDirectory}/${directory}`)
);
process.chdir(DEFAULT_DIRECTORY);
Expand Down

0 comments on commit 9900e5a

Please sign in to comment.