Skip to content

Commit 1e2c463

Browse files
committed
Exclude node_modules from NoHttp checks
Closes gh-32981
1 parent 628b050 commit 1e2c463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ configure(rootProject) {
151151
def rootPath = file(rootDir).toPath()
152152
def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc"
153153
projectDirs.forEach { dir ->
154-
[ 'bin', 'build', 'out', '.settings' ]
154+
[ 'bin', 'build', 'out', '.settings', 'node_modules' ]
155155
.collect { rootPath.relativize(new File(dir, it).toPath()) }
156156
.forEach { source.exclude "$it/**" }
157157
[ '.classpath', '.project' ]

0 commit comments

Comments
 (0)