Skip to content

Commit 8c8f2cd

Browse files
committed
Fix exclusion patterns
1 parent cda99da commit 8c8f2cd

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

tools/make/lib/notes/Makefile

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,21 @@ FIND_NOTES_DIR ?= $(ROOT_DIR)
4444
#/
4545
notes:
4646
$(QUIET) $(FIND_NOTES) $(FIND_NOTES_FLAGS) $(KEYWORDS) $(FIND_NOTES_DIR) \
47-
--exclude-dir "$(NODE_MODULES)/*" \
48-
--exclude-dir "$(BUILD_DIR)/*" \
49-
--exclude-dir "$(DIST_DIR)/*" \
50-
--exclude-dir "$(REPORTS_DIR)/*" \
51-
--exclude-dir "$(DEPS_TMP_DIR)/*" \
52-
--exclude-dir "$(DEPS_BUILD_DIR)/*" \
53-
--exclude-dir "$(DOCS_DIR)/**/$(NODE_MODULES_FOLDER)/*" \
54-
--exclude "$(this_file)" \
47+
--exclude-dir "$(NODE_MODULES)" \
48+
--exclude-dir "$(BUILD_DIR)" \
49+
--exclude-dir "$(DIST_DIR)" \
50+
--exclude-dir "$(REPORTS_DIR)" \
51+
--exclude-dir "$(DEPS_TMP_DIR)" \
52+
--exclude-dir "$(DEPS_BUILD_DIR)" \
53+
--exclude-dir "$(DOCS_DIR)/**/$(NODE_MODULES_FOLDER)" \
54+
--exclude-dir "$(TOOLS_DIR)/snippets" \
5555
--exclude "$(ROOT_DIR)/.*" \
5656
--exclude "**/$(BUILD_FOLDER)/*" \
57+
--exclude "**/$(TMP_FOLDER)/*" \
58+
--exclude "**/$(DATA_FOLDER)/*" \
59+
--exclude "**/datasets/**/data.js" \
60+
--exclude "*.min.js" \
61+
--exclude "$(this_file)" \
5762
--exclude TODO.md
5863

5964
.PHONY: notes

0 commit comments

Comments
 (0)