Skip to content

Commit 54ea273

Browse files
committed
Update .gitignore
1 parent f01e354 commit 54ea273

File tree

1 file changed

+33
-7
lines changed

1 file changed

+33
-7
lines changed

.gitignore

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/macos,node
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,node
3-
4-
/dist/
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
53

64
### macOS ###
75
# General
@@ -12,6 +10,7 @@
1210
# Icon must end with two \r
1311
Icon
1412

13+
1514
# Thumbnails
1615
._*
1716

@@ -39,6 +38,7 @@ npm-debug.log*
3938
yarn-debug.log*
4039
yarn-error.log*
4140
lerna-debug.log*
41+
.pnpm-debug.log*
4242

4343
# Diagnostic reports (https://nodejs.org/api/report.html)
4444
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -75,8 +75,8 @@ build/Release
7575
node_modules/
7676
jspm_packages/
7777

78-
# TypeScript v1 declaration files
79-
typings/
78+
# Snowpack dependency directory (https://snowpack.dev/)
79+
web_modules/
8080

8181
# TypeScript cache
8282
*.tsbuildinfo
@@ -105,12 +105,15 @@ typings/
105105
# dotenv environment variables file
106106
.env
107107
.env.test
108+
.env.production
108109

109110
# parcel-bundler cache (https://parceljs.org/)
110111
.cache
112+
.parcel-cache
111113

112114
# Next.js build output
113115
.next
116+
out
114117

115118
# Nuxt.js build / generate output
116119
.nuxt
@@ -140,4 +143,27 @@ dist
140143
# Stores VSCode versions used for testing VSCode extensions
141144
.vscode-test
142145

143-
# End of https://www.toptal.com/developers/gitignore/api/macos,node
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

0 commit comments

Comments
 (0)