mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: exclude node_modules from ts tracking (#18117)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user