Skip to content

Commit b15c774

Browse files
committed
Exclude top-level deps directory
1 parent d67319a commit b15c774

7 files changed

Lines changed: 7 additions & 0 deletions

File tree

tools/make/lib/ls/benchmarks.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ FIND_BENCHMARKS_FLAGS ?= \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
2424
-not -path "$(BUILD_DIR)/*" \
25+
-not -path "$(DEPS_DIR)/*" \
2526
-not -path "$(REPORTS_DIR)/*"
2627

2728

tools/make/lib/ls/examples.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ FIND_EXAMPLES_FLAGS ?= \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
2424
-not -path "$(BUILD_DIR)/*" \
25+
-not -path "$(DEPS_DIR)/*" \
2526
-not -path "$(REPORTS_DIR)/*" \
2627
-not -path "$(ROOT_DIR)/**/$(EXAMPLES_FOLDER)/fixtures/*"
2728

tools/make/lib/ls/pkgs.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ FIND_PACKAGES_FLAGS ?= \
1919
-regex "$(PACKAGES_FILTER)" \
2020
-not -path "$(NODE_MODULES)/*" \
2121
-not -path "$(BUILD_DIR)/*" \
22+
-not -path "$(DEPS_DIR)/*" \
2223
-not -path "$(REPORTS_DIR)/*" \
2324
-exec dirname {} \;
2425

tools/make/lib/ls/sources.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_SOURCES_FLAGS ?= \
2121
-not -path "$(NODE_MODULES)/*" \
2222
-not -path "$(TOOLS_DIR)/*" \
2323
-not -path "$(BUILD_DIR)/*" \
24+
-not -path "$(DEPS_DIR)/*" \
2425
-not -path "$(REPORTS_DIR)/*" \
2526
-not -path "$(ROOT_DIR)/**/$(EXAMPLES_FOLDER)/*" \
2627
-not -path "$(ROOT_DIR)/**/$(TESTS_FOLDER)/*" \

tools/make/lib/ls/tests.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ FIND_TESTS_FLAGS ?= \
2020
-not -path "$(ROOT_DIR)/.*" \
2121
-not -path "$(NODE_MODULES)/*" \
2222
-not -path "$(TOOLS_DIR)/*" \
23+
-not -path "$(DEPS_DIR)/*" \
2324
-not -path "$(BUILD_DIR)/*" \
2425
-not -path "$(REPORTS_DIR)/*" \
2526
-not -path "$(ROOT_DIR)/**/$(BUILD_FOLDER)/*"

tools/make/lib/ls/tests_directories.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_TESTS_DIRS_FLAGS ?= \
2121
-not -path "$(NODE_MODULES)/*" \
2222
-not -path "$(TOOLS_DIR)/*" \
2323
-not -path "$(BUILD_DIR)/*" \
24+
-not -path "$(DEPS_DIR)/*" \
2425
-not -path "$(REPORTS_DIR)/*" \
2526
-not -path "$(ROOT_DIR)/**/$(BUILD_FOLDER)/*"
2627

tools/make/lib/ls/tests_fixtures.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ FIND_TESTS_FIXTURES_FLAGS ?= \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
2424
-not -path "$(BUILD_DIR)/*" \
25+
-not -path "$(DEPS_DIR)/*" \
2526
-not -path "$(REPORTS_DIR)/*" \
2627
-not -path "$(ROOT_DIR)/**/$(BUILD_FOLDER)/*"
2728

0 commit comments

Comments
 (0)