Skip to content

Commit 2716117

Browse files
committed
Add Node.js files to .gitignore
1 parent 6fbb869 commit 2716117

1 file changed

Lines changed: 150 additions & 0 deletions

File tree

.gitignore

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,153 @@ cython_debug/
171171
# and can be added to the global gitignore or merged into this file. For a more nuclear
172172
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
173173
#.idea/
174+
175+
# Build directories
176+
package
177+
178+
# Environment versions file
179+
.versions
180+
181+
# Tern
182+
.tern-project
183+
.tern-port
184+
185+
# npm config
186+
.npmrc
187+
188+
# Temporary development files
189+
tmp
190+
191+
# Yarn lockfile (only package-lock.json supported)
192+
yarn.lock
193+
194+
# Logs
195+
logs
196+
*.log
197+
npm-debug.log*
198+
yarn-debug.log*
199+
yarn-error.log*
200+
lerna-debug.log*
201+
.pnpm-debug.log*
202+
203+
# Diagnostic reports (https://nodejs.org/api/report.html)
204+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
205+
206+
# Runtime data
207+
pids
208+
*.pid
209+
*.seed
210+
*.pid.lock
211+
212+
# Directory for instrumented libs generated by jscoverage/JSCover
213+
lib-cov
214+
215+
# Coverage directory used by tools like istanbul
216+
coverage
217+
*.lcov
218+
219+
# nyc test coverage
220+
.nyc_output
221+
222+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
223+
.grunt
224+
225+
# Bower dependency directory (https://bower.io/)
226+
bower_components
227+
228+
# node-waf configuration
229+
.lock-wscript
230+
231+
# Compiled binary addons (https://nodejs.org/api/addons.html)
232+
build/Release
233+
234+
# Dependency directories
235+
node_modules/
236+
jspm_packages/
237+
238+
# Snowpack dependency directory (https://snowpack.dev/)
239+
web_modules/
240+
241+
# TypeScript cache
242+
*.tsbuildinfo
243+
244+
# Optional npm cache directory
245+
.npm
246+
247+
# Optional eslint cache
248+
.eslintcache
249+
250+
# Optional stylelint cache
251+
.stylelintcache
252+
253+
# Microbundle cache
254+
.rpt2_cache/
255+
.rts2_cache_cjs/
256+
.rts2_cache_es/
257+
.rts2_cache_umd/
258+
259+
# Optional REPL history
260+
.node_repl_history
261+
262+
# Output of 'npm pack'
263+
*.tgz
264+
265+
# Yarn Integrity file
266+
.yarn-integrity
267+
268+
# dotenv environment variable files
269+
.env
270+
.env.development.local
271+
.env.test.local
272+
.env.production.local
273+
.env.local
274+
275+
# parcel-bundler cache (https://parceljs.org/)
276+
.cache
277+
.parcel-cache
278+
279+
# Next.js build output
280+
.next
281+
out
282+
283+
# Nuxt.js build / generate output
284+
.nuxt
285+
dist
286+
287+
# Gatsby files
288+
.cache/
289+
# Comment in the public line in if your project uses Gatsby and not Next.js
290+
# https://nextjs.org/blog/next-9-1#public-directory-support
291+
# public
292+
293+
# vuepress build output
294+
.vuepress/dist
295+
296+
# vuepress v2.x temp and cache directory
297+
.temp
298+
.cache
299+
300+
# Docusaurus cache and generated files
301+
.docusaurus
302+
303+
# Serverless directories
304+
.serverless/
305+
306+
# FuseBox cache
307+
.fusebox/
308+
309+
# DynamoDB Local files
310+
.dynamodb/
311+
312+
# TernJS port file
313+
.tern-port
314+
315+
# Stores VSCode versions used for testing VSCode extensions
316+
.vscode-test
317+
318+
# yarn v2
319+
.yarn/cache
320+
.yarn/unplugged
321+
.yarn/build-state.yml
322+
.yarn/install-state.gz
323+
.pnp.*

0 commit comments

Comments
 (0)