1
+ # ## Node template
1
2
# Logs
2
3
logs
3
4
* .log
4
5
npm-debug.log *
5
6
yarn-debug.log *
6
7
yarn-error.log *
8
+ lerna-debug.log *
9
+
10
+ # Diagnostic reports (https://nodejs.org/api/report.html)
11
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
7
12
8
13
# Runtime data
9
14
pids
@@ -16,11 +21,12 @@ lib-cov
16
21
17
22
# Coverage directory used by tools like istanbul
18
23
coverage
24
+ * .lcov
19
25
20
26
# nyc test coverage
21
27
.nyc_output
22
28
23
- # Grunt intermediate storage (http ://gruntjs.com/creating-plugins#storing-task-files)
29
+ # Grunt intermediate storage (https ://gruntjs.com/creating-plugins#storing-task-files)
24
30
.grunt
25
31
26
32
# Bower dependency directory (https://bower.io/)
@@ -29,7 +35,7 @@ bower_components
29
35
# node-waf configuration
30
36
.lock-wscript
31
37
32
- # Compiled binary addons (http ://nodejs.org/api/addons.html)
38
+ # Compiled binary addons (https ://nodejs.org/api/addons.html)
33
39
build /Release
34
40
35
41
# Dependency directories
@@ -39,12 +45,24 @@ jspm_packages/
39
45
# Typescript v1 declaration files
40
46
typings /
41
47
48
+ # Snowpack dependency directory (https://snowpack.dev/)
49
+ web_modules /
50
+
51
+ # TypeScript cache
52
+ * .tsbuildinfo
53
+
42
54
# Optional npm cache directory
43
55
.npm
44
56
45
57
# Optional eslint cache
46
58
.eslintcache
47
59
60
+ # Microbundle cache
61
+ .rpt2_cache /
62
+ .rts2_cache_cjs /
63
+ .rts2_cache_es /
64
+ .rts2_cache_umd /
65
+
48
66
# Optional REPL history
49
67
.node_repl_history
50
68
@@ -56,4 +74,124 @@ typings/
56
74
57
75
# dotenv environment variables file
58
76
.env
77
+ .env.test
59
78
79
+ # parcel-bundler cache (https://parceljs.org/)
80
+ .cache
81
+ .parcel-cache
82
+
83
+ # Next.js build output
84
+ .next
85
+
86
+ # Nuxt.js build / generate output
87
+ .nuxt
88
+ dist
89
+
90
+ # Gatsby files
91
+ .cache /
92
+ # Comment in the public line in if your project uses Gatsby and not Next.js
93
+ # https://nextjs.org/blog/next-9-1#public-directory-support
94
+ # public
95
+
96
+ # vuepress build output
97
+ .vuepress /dist
98
+
99
+ # Serverless directories
100
+ .serverless /
101
+
102
+ # FuseBox cache
103
+ .fusebox /
104
+
105
+ # DynamoDB Local files
106
+ .dynamodb /
107
+
108
+ # TernJS port file
109
+ .tern-port
110
+
111
+ # Stores VSCode versions used for testing VSCode extensions
112
+ .vscode-test
113
+
114
+ # yarn v2
115
+
116
+ .yarn /cache
117
+ .yarn /unplugged
118
+ .yarn /build-state.yml
119
+ .pnp. *
120
+
121
+ # ## Windows template
122
+ # Windows thumbnail cache files
123
+ Thumbs.db
124
+ Thumbs.db:encryptable
125
+ ehthumbs.db
126
+ ehthumbs_vista.db
127
+
128
+ # Dump file
129
+ * .stackdump
130
+
131
+ # Folder config file
132
+ [Dd ]esktop.ini
133
+
134
+ # Recycle Bin used on file shares
135
+ $RECYCLE.BIN /
136
+
137
+ # Windows Installer files
138
+ * .cab
139
+ * .msi
140
+ * .msix
141
+ * .msm
142
+ * .msp
143
+
144
+ # Windows shortcuts
145
+ * .lnk
146
+
147
+ # ## macOS template
148
+ # General
149
+ .DS_Store
150
+ .AppleDouble
151
+ .LSOverride
152
+
153
+ # Icon must end with two \r
154
+ Icon
155
+
156
+ # Thumbnails
157
+ ._ *
158
+
159
+ # Files that might appear in the root of a volume
160
+ .DocumentRevisions-V100
161
+ .fseventsd
162
+ .Spotlight-V100
163
+ .TemporaryItems
164
+ .Trashes
165
+ .VolumeIcon.icns
166
+ .com.apple.timemachine.donotpresent
167
+
168
+ # Directories potentially created on remote AFP share
169
+ .AppleDB
170
+ .AppleDesktop
171
+ Network Trash Folder
172
+ Temporary Items
173
+ .apdisk
174
+
175
+ # ## Example user template template
176
+ # ## Example user template
177
+
178
+ # IntelliJ project files
179
+ .idea
180
+ * .iml
181
+ out
182
+ gen
183
+
184
+ # ## VisualStudioCode template
185
+ .vscode /*
186
+ ! .vscode /settings.json
187
+ ! .vscode /tasks.json
188
+ ! .vscode /launch.json
189
+ ! .vscode /extensions.json
190
+ * .code-workspace
191
+
192
+ # Local History for Visual Studio Code
193
+ .history /
194
+
195
+ # ## PuTTY template
196
+ # Private key
197
+ * .ppk
0 commit comments