Skip to content

Commit 864956a

Browse files
authored
chore(.gitignore): use updated skeleton template (#11)
1 parent 4444b1a commit 864956a

File tree

1 file changed

+44
-5
lines changed

1 file changed

+44
-5
lines changed

.gitignore

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
8+
.pnpm-debug.log*
89

910
# Diagnostic reports (https://nodejs.org/api/report.html)
1011
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -41,8 +42,8 @@ build/Release
4142
node_modules/
4243
jspm_packages/
4344

44-
# TypeScript v1 declaration files
45-
typings/
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
4647

4748
# TypeScript cache
4849
*.tsbuildinfo
@@ -53,6 +54,9 @@ typings/
5354
# Optional eslint cache
5455
.eslintcache
5556

57+
# Optional stylelint cache
58+
.stylelintcache
59+
5660
# Microbundle cache
5761
.rpt2_cache/
5862
.rts2_cache_cjs/
@@ -68,29 +72,41 @@ typings/
6872
# Yarn Integrity file
6973
.yarn-integrity
7074

71-
# dotenv environment variables file
75+
# dotenv environment variable files
7276
.env
73-
.env.test
77+
.env.development.local
78+
.env.test.local
79+
.env.production.local
80+
.env.local
7481

7582
# parcel-bundler cache (https://parceljs.org/)
7683
.cache
84+
.parcel-cache
7785

7886
# Next.js build output
7987
.next
88+
out
8089

8190
# Nuxt.js build / generate output
8291
.nuxt
8392
dist
8493

8594
# Gatsby files
8695
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
96+
# Comment in the public line in if your project uses Gatsby and not Next.js
8897
# https://nextjs.org/blog/next-9-1#public-directory-support
8998
# public
9099

91100
# vuepress build output
92101
.vuepress/dist
93102

103+
# vuepress v2.x temp and cache directory
104+
.temp
105+
.cache
106+
107+
# Docusaurus cache and generated files
108+
.docusaurus
109+
94110
# Serverless directories
95111
.serverless/
96112

@@ -103,4 +119,27 @@ dist
103119
# TernJS port file
104120
.tern-port
105121

122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*
131+
132+
# Vim swap files
133+
*.swp
134+
135+
# macOS files
136+
.DS_Store
137+
138+
# lock files
106139
package-lock.json
140+
pnpm-lock.yaml
141+
yarn.lock
142+
143+
# editor files
144+
.vscode
145+
.idea

0 commit comments

Comments
 (0)