Skip to content

Commit 107c28d

Browse files
committed
Update .gitignore
1 parent 3c3ad11 commit 107c28d

File tree

1 file changed

+10
-167
lines changed

1 file changed

+10
-167
lines changed

.gitignore

Lines changed: 10 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -1,169 +1,12 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/macos,node,visualstudiocode
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,node,visualstudiocode
3-
4-
### macOS ###
5-
# General
61
.DS_Store
7-
.AppleDouble
8-
.LSOverride
9-
10-
# Icon must end with two \r
11-
Icon
12-
13-
14-
# Thumbnails
15-
._*
16-
17-
# Files that might appear in the root of a volume
18-
.DocumentRevisions-V100
19-
.fseventsd
20-
.Spotlight-V100
21-
.TemporaryItems
22-
.Trashes
23-
.VolumeIcon.icns
24-
.com.apple.timemachine.donotpresent
25-
26-
# Directories potentially created on remote AFP share
27-
.AppleDB
28-
.AppleDesktop
29-
Network Trash Folder
30-
Temporary Items
31-
.apdisk
32-
33-
### Node ###
34-
# Logs
35-
logs
36-
*.log
37-
npm-debug.log*
38-
yarn-debug.log*
39-
yarn-error.log*
40-
lerna-debug.log*
41-
.pnpm-debug.log*
42-
43-
# Diagnostic reports (https://nodejs.org/api/report.html)
44-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
45-
46-
# Runtime data
47-
pids
48-
*.pid
49-
*.seed
50-
*.pid.lock
51-
52-
# Directory for instrumented libs generated by jscoverage/JSCover
53-
lib-cov
54-
55-
# Coverage directory used by tools like istanbul
56-
coverage
57-
*.lcov
58-
59-
# nyc test coverage
60-
.nyc_output
61-
62-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
63-
.grunt
64-
65-
# Bower dependency directory (https://bower.io/)
66-
bower_components
67-
68-
# node-waf configuration
69-
.lock-wscript
70-
71-
# Compiled binary addons (https://nodejs.org/api/addons.html)
72-
build/Release
73-
74-
# Dependency directories
75-
node_modules/
76-
jspm_packages/
77-
78-
# Snowpack dependency directory (https://snowpack.dev/)
79-
web_modules/
80-
81-
# TypeScript cache
82-
*.tsbuildinfo
83-
84-
# Optional npm cache directory
85-
.npm
86-
87-
# Optional eslint cache
88-
.eslintcache
89-
90-
# Microbundle cache
91-
.rpt2_cache/
92-
.rts2_cache_cjs/
93-
.rts2_cache_es/
94-
.rts2_cache_umd/
95-
96-
# Optional REPL history
97-
.node_repl_history
98-
99-
# Output of 'npm pack'
100-
*.tgz
101-
102-
# Yarn Integrity file
103-
.yarn-integrity
104-
105-
# dotenv environment variables file
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
1066
.env
107-
.env.test
108-
.env.production
109-
110-
# parcel-bundler cache (https://parceljs.org/)
111-
.cache
112-
.parcel-cache
113-
114-
# Next.js build output
115-
.next
116-
out
117-
118-
# Nuxt.js build / generate output
119-
.nuxt
120-
dist
121-
122-
# Gatsby files
123-
.cache/
124-
# Comment in the public line in if your project uses Gatsby and not Next.js
125-
# https://nextjs.org/blog/next-9-1#public-directory-support
126-
# public
127-
128-
# vuepress build output
129-
.vuepress/dist
130-
131-
# Serverless directories
132-
.serverless/
133-
134-
# FuseBox cache
135-
.fusebox/
136-
137-
# DynamoDB Local files
138-
.dynamodb/
139-
140-
# TernJS port file
141-
.tern-port
142-
143-
# Stores VSCode versions used for testing VSCode extensions
144-
.vscode-test
145-
146-
# yarn v2
147-
.yarn/cache
148-
.yarn/unplugged
149-
.yarn/build-state.yml
150-
.yarn/install-state.gz
151-
.pnp.*
152-
153-
### VisualStudioCode ###
154-
.vscode/*
155-
!.vscode/settings.json
156-
!.vscode/tasks.json
157-
!.vscode/launch.json
158-
!.vscode/extensions.json
159-
*.code-workspace
160-
161-
# Local History for Visual Studio Code
162-
.history/
163-
164-
### VisualStudioCode Patch ###
165-
# Ignore all local history of files
166-
.history
167-
.ionide
168-
169-
# End of https://www.toptal.com/developers/gitignore/api/macos,node,visualstudiocode
7+
.env.*
8+
!.env.example
9+
vite.config.js.timestamp-*
10+
vite.config.ts.timestamp-*
11+
/dist
12+
/temp

0 commit comments

Comments
 (0)