Skip to content

Commit 0824f75

Browse files
committed
dot.*ignore update
1 parent 96910b5 commit 0824f75

File tree

2 files changed

+53
-17
lines changed

2 files changed

+53
-17
lines changed

.gitignore

Lines changed: 39 additions & 12 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
@@ -35,15 +36,14 @@ bower_components
3536
.lock-wscript
3637

3738
# Compiled binary addons (https://nodejs.org/api/addons.html)
38-
# build/Release
39-
build*/
39+
build/Release
4040

4141
# Dependency directories
4242
node_modules/
4343
jspm_packages/
4444

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

4848
# TypeScript cache
4949
*.tsbuildinfo
@@ -54,6 +54,9 @@ typings/
5454
# Optional eslint cache
5555
.eslintcache
5656

57+
# Optional stylelint cache
58+
.stylelintcache
59+
5760
# Microbundle cache
5861
.rpt2_cache/
5962
.rts2_cache_cjs/
@@ -69,29 +72,41 @@ typings/
6972
# Yarn Integrity file
7073
.yarn-integrity
7174

72-
# dotenv environment variables file
75+
# dotenv environment variable files
7376
.env
74-
.env.test
77+
.env.development.local
78+
.env.test.local
79+
.env.production.local
80+
.env.local
7581

7682
# parcel-bundler cache (https://parceljs.org/)
7783
.cache
84+
.parcel-cache
7885

7986
# Next.js build output
8087
.next
88+
out
8189

8290
# Nuxt.js build / generate output
8391
.nuxt
8492
dist
8593

8694
# Gatsby files
8795
.cache/
88-
# 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
8997
# https://nextjs.org/blog/next-9-1#public-directory-support
9098
# public
9199

92100
# vuepress build output
93101
.vuepress/dist
94102

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

@@ -104,18 +119,30 @@ dist
104119
# TernJS port file
105120
.tern-port
106121

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+
# added for xPack
133+
134+
.vscode/c_cpp_properties.json
135+
107136
# xpm
108137
xpacks/
109-
xpack-*.tgz
138+
build*/
139+
140+
/*.tgz
110141

111142
# Windows
112143
Thumbs.db
113144

114145
# macOS
115146
.DS_Store
116147

117-
.vscode/c_cpp_properties.json
118-
119-
build/
120-
121148
# end

.npmignore

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,28 @@
33
.github/
44
.gitignore
55
.gitmodules
6+
.clang-*
7+
.cmake-format
68

79
.vscode/
810

911
patches/
1012
pkgconfig/
1113
scripts/
12-
tests/
13-
extras/
14+
test*/
15+
build*/
16+
ci/
17+
docs/
18+
example*/
19+
20+
xpacks/
21+
node_modules/
22+
23+
/*.tgz
1424

1525
README-*
1626
LICENSE-*
27+
CONTRIBUTING**
1728

18-
*.tgz
19-
20-
build*/
2129
wrappers/
30+
extras/

0 commit comments

Comments
 (0)