blob: 66a6bc95e1aa6c723e57dc99cce0c03da659986b [file] [log] [blame]
Samuel Shuert9461a6a2023-12-03 19:26:54 -05001input.txt
2
Samuel Shuertbb26c9e2023-12-01 15:13:20 -05003# Logs
4logs
5*.log
6npm-debug.log*
7yarn-debug.log*
8yarn-error.log*
9lerna-debug.log*
10.pnpm-debug.log*
11
12# Diagnostic reports (https://nodejs.org/api/report.html)
13report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
14
15# Runtime data
16pids
17*.pid
18*.seed
19*.pid.lock
20
21# Directory for instrumented libs generated by jscoverage/JSCover
22lib-cov
23
24# Coverage directory used by tools like istanbul
25coverage
26*.lcov
27
28# nyc test coverage
29.nyc_output
30
31# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
32.grunt
33
34# Bower dependency directory (https://bower.io/)
35bower_components
36
37# node-waf configuration
38.lock-wscript
39
40# Compiled binary addons (https://nodejs.org/api/addons.html)
41build/Release
42
43# Dependency directories
44node_modules/
45jspm_packages/
46
47# Snowpack dependency directory (https://snowpack.dev/)
48web_modules/
49
50# TypeScript cache
51*.tsbuildinfo
52
53# Optional npm cache directory
54.npm
55
56# Optional eslint cache
57.eslintcache
58
59# Optional stylelint cache
60.stylelintcache
61
62# Microbundle cache
63.rpt2_cache/
64.rts2_cache_cjs/
65.rts2_cache_es/
66.rts2_cache_umd/
67
68# Optional REPL history
69.node_repl_history
70
71# Output of 'npm pack'
72*.tgz
73
74# Yarn Integrity file
75.yarn-integrity
76
77# dotenv environment variable files
78.env
79.env.development.local
80.env.test.local
81.env.production.local
82.env.local
83
84# parcel-bundler cache (https://parceljs.org/)
85.cache
86.parcel-cache
87
88# Next.js build output
89.next
90out
91
92# Nuxt.js build / generate output
93.nuxt
94dist
95
96# Gatsby files
97.cache/
98# Comment in the public line in if your project uses Gatsby and not Next.js
99# https://nextjs.org/blog/next-9-1#public-directory-support
100# public
101
102# vuepress build output
103.vuepress/dist
104
105# vuepress v2.x temp and cache directory
106.temp
107.cache
108
109# Docusaurus cache and generated files
110.docusaurus
111
112# Serverless directories
113.serverless/
114
115# FuseBox cache
116.fusebox/
117
118# DynamoDB Local files
119.dynamodb/
120
121# TernJS port file
122.tern-port
123
124# Stores VSCode versions used for testing VSCode extensions
125.vscode-test
126
127# yarn v2
128.yarn/cache
129.yarn/unplugged
130.yarn/build-state.yml
131.yarn/install-state.gz
132.pnp.*