강동현

.gitignore를 최상단 폴더로 이동

1 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 1 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 2
3 # dependencies 3 # dependencies
4 -/node_modules 4 +*/node_modules
5 -/.pnp 5 +*/.pnp
6 .pnp.js 6 .pnp.js
7 7
8 # testing 8 # testing
9 -/coverage 9 +*/coverage
10 10
11 # production 11 # production
12 -/build 12 +*/build
13 13
14 # misc 14 # misc
15 .DS_Store 15 .DS_Store
......