Skip to content

Commit 8dbcb99

Browse files
Update .gitignore
1 parent 68ea1e6 commit 8dbcb99

1 file changed

Lines changed: 81 additions & 115 deletions

File tree

.gitignore

Lines changed: 81 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,143 +1,109 @@
1-
# Logs
1+
# =========================
2+
# LOGS
3+
# =========================
24
logs
35
*.log
46
npm-debug.log*
57
yarn-debug.log*
68
yarn-error.log*
79
lerna-debug.log*
810

9-
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
# Node reports
1012
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1113

12-
# Runtime data
13-
pids
14-
*.pid
15-
*.seed
16-
*.pid.lock
17-
18-
# Directory for instrumented libs generated by jscoverage/JSCover
19-
lib-cov
20-
21-
# Coverage directory used by tools like istanbul
22-
coverage
23-
*.lcov
24-
25-
# nyc test coverage
26-
.nyc_output
27-
28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29-
.grunt
30-
31-
# Bower dependency directory (https://bower.io/)
32-
bower_components
33-
34-
# node-waf configuration
35-
.lock-wscript
36-
37-
# Compiled binary addons (https://nodejs.org/api/addons.html)
38-
build/Release
39-
40-
# Dependency directories
14+
# =========================
15+
# NODE / JS
16+
# =========================
4117
node_modules/
4218
jspm_packages/
43-
44-
# Snowpack dependency directory (https://snowpack.dev/)
19+
bower_components/
4520
web_modules/
4621

47-
# TypeScript cache
48-
*.tsbuildinfo
22+
.pnp.*
23+
.pnp.js
4924

50-
# Optional npm cache directory
5125
.npm
52-
53-
# Optional eslint cache
5426
.eslintcache
55-
56-
# Optional stylelint cache
5727
.stylelintcache
58-
59-
# Optional REPL history
6028
.node_repl_history
6129

62-
# Output of 'npm pack'
63-
*.tgz
64-
65-
# Yarn Integrity file
30+
# Dependency lock / cache
31+
.yarn/*
32+
!.yarn/patches
33+
!.yarn/plugins
34+
!.yarn/releases
35+
!.yarn/sdks
36+
!.yarn/versions
6637
.yarn-integrity
38+
.pnpm-store
6739

68-
# dotenv environment variable files
69-
.env
70-
.env.*
71-
!.env.example
72-
73-
# parcel-bundler cache (https://parceljs.org/)
74-
.cache
75-
.parcel-cache
76-
77-
# Next.js build output
78-
.next
79-
out
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
83-
dist
84-
.output
85-
86-
# Gatsby files
40+
# Build outputs (Node frameworks)
41+
dist/
42+
build/
43+
out/
44+
.next/
45+
.nuxt/
8746
.cache/
88-
# Comment in the public line in if your project uses Gatsby and not Next.js
89-
# https://nextjs.org/blog/next-9-1#public-directory-support
90-
# public
91-
92-
# vuepress build output
93-
.vuepress/dist
94-
95-
# vuepress v2.x temp directory
96-
.temp
97-
98-
# Sveltekit cache directory
47+
.parcel-cache/
48+
.output/
9949
.svelte-kit/
50+
.vite/
10051

101-
# vitepress build output
102-
**/.vitepress/dist
103-
104-
# vitepress cache directory
105-
**/.vitepress/cache
106-
107-
# Docusaurus cache and generated files
108-
.docusaurus
109-
110-
# Serverless directories
111-
.serverless/
52+
# TypeScript
53+
*.tsbuildinfo
11254

113-
# FuseBox cache
114-
.fusebox/
55+
# =========================
56+
# ENV FILES
57+
# =========================
58+
.env
59+
.env.*
60+
!.env.example
11561

116-
# DynamoDB Local files
117-
.dynamodb/
62+
# =========================
63+
# ANDROID / CORDOVA
64+
# =========================
65+
platforms/
66+
plugins/
67+
www/
68+
69+
.gradle/
70+
local.properties
71+
*.iml
72+
73+
cordova.gradle
74+
.cordova/
75+
76+
# Android Studio
77+
.idea/
78+
*.hprof
79+
.vscode/
80+
81+
# Android build outputs
82+
app/
83+
app/**/build/
84+
outputs/
85+
*.apk
86+
*.aab
87+
88+
# Keystore (IMPORTANT)
89+
*.jks
90+
*.keystore
91+
92+
# Emulator / system
93+
.emulator/
94+
95+
# =========================
96+
# OS FILES
97+
# =========================
98+
.DS_Store
99+
Thumbs.db
100+
101+
# =========================
102+
# CACHES
103+
# =========================
104+
*.cache
105+
.cache/
118106

119-
# Firebase cache directory
107+
# Firebase / serverless
120108
.firebase/
121-
122-
# TernJS port file
123-
.tern-port
124-
125-
# Stores VSCode versions used for testing VSCode extensions
126-
.vscode-test
127-
128-
# pnpm
129-
.pnpm-store
130-
131-
# yarn v3
132-
.pnp.*
133-
.yarn/*
134-
!.yarn/patches
135-
!.yarn/plugins
136-
!.yarn/releases
137-
!.yarn/sdks
138-
!.yarn/versions
139-
140-
# Vite files
141-
vite.config.js.timestamp-*
142-
vite.config.ts.timestamp-*
143-
.vite/
109+
.serverless/

0 commit comments

Comments
 (0)