From 71572d7ce065c79e6f63dfbff503fd81fa03058b Mon Sep 17 00:00:00 2001 From: Yijia Su <85918228+yijiasu-crypto@users.noreply.github.com> Date: Tue, 22 Jun 2021 15:12:51 +0800 Subject: [PATCH] build: add `node_modules` to .gitignore (#164) --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a6bd9eeac..c9d37799d 100644 --- a/.gitignore +++ b/.gitignore @@ -63,4 +63,8 @@ dependency-graph.png # Contracts *.bin -*.abi \ No newline at end of file +*.abi + +# Node.js +tests/**/node_modules/* +tests-solidity/**/node_modules/* \ No newline at end of file