File tree 1 file changed +117
-2
lines changed
1 file changed +117
-2
lines changed Original file line number Diff line number Diff line change 1
- npm-debug.log
2
- node_modules
1
+ # Created by https://www.gitignore.io/api/osx,node,linux,windows
2
+ # Edit at https://www.gitignore.io/?templates=osx,node,linux,windows
3
+
4
+ # ## Linux ###
5
+ * ~
6
+
7
+ # temporary files which can be created if a process still has a handle open of a deleted file
8
+ .fuse_hidden *
9
+
10
+ # KDE directory preferences
11
+ .directory
12
+
13
+ # Linux trash folder which might appear on any partition or disk
14
+ .Trash- *
15
+
16
+ # .nfs files are created when an open file is removed but is still being accessed
17
+ .nfs *
18
+
19
+ # ## Node ###
20
+ # Logs
21
+ logs
22
+ * .log
23
+ npm-debug.log *
24
+ yarn-debug.log *
25
+ yarn-error.log *
26
+
27
+ # Runtime data
28
+ pids
29
+ * .pid
30
+ * .seed
31
+ * .pid.lock
32
+
33
+ # Coverage directory used by tools like istanbul
34
+ coverage
35
+
36
+ # nyc test coverage
37
+ .nyc_output
38
+
39
+ # Dependency directories
40
+ node_modules /
41
+
42
+ # Optional npm cache directory
43
+ .npm
44
+
45
+ # Optional eslint cache
46
+ .eslintcache
47
+
48
+ # Optional REPL history
49
+ .node_repl_history
50
+
51
+ # Output of 'npm pack'
52
+ * .tgz
53
+
54
+ # Yarn Integrity file
55
+ .yarn-integrity
56
+
57
+ # dotenv environment variables file
58
+ .env
59
+ .env.test
60
+
61
+ # ## OSX ###
62
+ # General
63
+ .DS_Store
64
+ .AppleDouble
65
+ .LSOverride
66
+
67
+ # Icon must end with two \r
68
+ Icon
69
+
70
+ # Thumbnails
71
+ ._ *
72
+
73
+ # Files that might appear in the root of a volume
74
+ .DocumentRevisions-V100
75
+ .fseventsd
76
+ .Spotlight-V100
77
+ .TemporaryItems
78
+ .Trashes
79
+ .VolumeIcon.icns
80
+ .com.apple.timemachine.donotpresent
81
+
82
+ # Directories potentially created on remote AFP share
83
+ .AppleDB
84
+ .AppleDesktop
85
+ Network Trash Folder
86
+ Temporary Items
87
+ .apdisk
88
+
89
+ # ## Windows ###
90
+ # Windows thumbnail cache files
91
+ Thumbs.db
92
+ ehthumbs.db
93
+ ehthumbs_vista.db
94
+
95
+ # Dump file
96
+ * .stackdump
97
+
98
+ # Folder config file
99
+ [Dd ]esktop.ini
100
+
101
+ # Recycle Bin used on file shares
102
+ $RECYCLE.BIN /
103
+
104
+ # Windows Installer files
105
+ * .cab
106
+ * .msi
107
+ * .msix
108
+ * .msm
109
+ * .msp
110
+
111
+ # Windows shortcuts
112
+ * .lnk
113
+
114
+ # End of https://www.gitignore.io/api/osx,node,linux,windows
115
+
116
+ # Package specific files
117
+
3
118
build
4
119
_build
5
120
site
You can’t perform that action at this time.
0 commit comments