Skip to content

Commit

Permalink
Exclude node_modules from NoHttp checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Jun 7, 2024
1 parent 628b050 commit 1e2c463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ configure(rootProject) {
def rootPath = file(rootDir).toPath()
def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc"
projectDirs.forEach { dir ->
[ 'bin', 'build', 'out', '.settings' ]
[ 'bin', 'build', 'out', '.settings', 'node_modules' ]
.collect { rootPath.relativize(new File(dir, it).toPath()) }
.forEach { source.exclude "$it/**" }
[ '.classpath', '.project' ]
Expand Down

0 comments on commit 1e2c463

Please sign in to comment.