File tree Expand file tree Collapse file tree 1 file changed +76
-8
lines changed Expand file tree Collapse file tree 1 file changed +76
-8
lines changed Original file line number Diff line number Diff line change 1
- # Project dependencies
2
- # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
3
- node_modules
4
- .cache /
5
- # Build directory
6
- public /
7
- .DS_Store
8
- yarn-error.log
1
+
2
+ # Created by https://www.gitignore.io/api/git,node,sass
3
+ # ## Gatsby ###
4
+ * .cache *
5
+ public
6
+
7
+ # ## Git ###
8
+ * .orig
9
+
10
+ # ## Node ###
11
+ # Logs
12
+ logs
13
+ * .log
14
+ npm-debug.log *
15
+ yarn-debug.log *
16
+ yarn-error.log *
17
+
18
+ # Runtime data
19
+ pids
20
+ * .pid
21
+ * .seed
22
+ * .pid.lock
23
+
24
+ # Directory for instrumented libs generated by jscoverage/JSCover
25
+ lib-cov
26
+
27
+ # Coverage directory used by tools like istanbul
28
+ coverage
29
+
30
+ # nyc test coverage
31
+ .nyc_output
32
+
33
+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
34
+ .grunt
35
+
36
+ # Bower dependency directory (https://bower.io/)
37
+ bower_components
38
+
39
+ # node-waf configuration
40
+ .lock-wscript
41
+
42
+ # Compiled binary addons (http://nodejs.org/api/addons.html)
43
+ build /Release
44
+
45
+ # Dependency directories
46
+ node_modules /
47
+ jspm_packages /
48
+
49
+ # Typescript v1 declaration files
50
+ typings /
51
+
52
+ # Optional npm cache directory
53
+ .npm
54
+
55
+ # Optional eslint cache
56
+ .eslintcache
57
+
58
+ # Optional REPL history
59
+ .node_repl_history
60
+
61
+ # Output of 'npm pack'
62
+ * .tgz
63
+
64
+ # Yarn Integrity file
65
+ .yarn-integrity
66
+
67
+ # dotenv environment variables file
68
+ .env
69
+
70
+
71
+ # ## Sass ###
72
+ .sass-cache /
73
+ * .css.map
74
+
75
+
76
+ # End of https://www.gitignore.io/api/git,node,sass
You can’t perform that action at this time.
0 commit comments