Skip to content

Commit 9de4bfb

Browse files
authored
gitignore: sync with GitHub, don't ignore dist
1 parent d129500 commit 9de4bfb

File tree

1 file changed

+99
-46
lines changed

1 file changed

+99
-46
lines changed

Diff for: .gitignore

+99-46
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,129 @@
11
# Logs
22
logs
33
*.log
4-
.idea/
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
513
# Runtime data
614
pids
715
*.pid
816
*.seed
9-
tests/certs
10-
tests/
11-
website/nodejs/
12-
website/assets/
13-
website/forums/
14-
website/lib/
15-
website/*.html
16-
website/*/.htaccess
17-
website/example/*
18-
build/
17+
*.pid.lock
1918

2019
# Directory for instrumented libs generated by jscoverage/JSCover
2120
lib-cov
2221

2322
# Coverage directory used by tools like istanbul
2423
coverage
24+
*.lcov
25+
26+
# nyc test coverage
2527
.nyc_output
2628

27-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
2830
.grunt
2931

30-
# Compiled binary addons (http://nodejs.org/api/addons.html)
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
3139
build/Release
3240

33-
# Dependency directory
34-
# Deployed apps should consider commenting this line out:
35-
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
36-
node_modules
37-
# =========================
38-
# Operating System Files
39-
# =========================
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Optional stylelint cache
58+
.stylelintcache
59+
60+
# Microbundle cache
61+
.rpt2_cache/
62+
.rts2_cache_cjs/
63+
.rts2_cache_es/
64+
.rts2_cache_umd/
65+
66+
# Optional REPL history
67+
.node_repl_history
68+
69+
# Output of 'npm pack'
70+
*.tgz
71+
72+
# Yarn Integrity file
73+
.yarn-integrity
74+
75+
# dotenv environment variable files
76+
.env
77+
.env.development.local
78+
.env.test.local
79+
.env.production.local
80+
.env.local
81+
82+
# parcel-bundler cache (https://parceljs.org/)
83+
.cache
84+
.parcel-cache
85+
86+
# Next.js build output
87+
.next
88+
out
4089

41-
# OSX
42-
# =========================
90+
# Nuxt.js build / generate output
91+
.nuxt
4392

44-
.DS_Store
45-
.AppleDouble
46-
.LSOverride
93+
# Gatsby files
94+
.cache/
95+
# Comment in the public line in if your project uses Gatsby and not Next.js
96+
# https://nextjs.org/blog/next-9-1#public-directory-support
97+
# public
4798

48-
# Icon must ends with two \r.
49-
Icon
99+
# vuepress build output
100+
.vuepress/dist
50101

102+
# vuepress v2.x temp and cache directory
103+
.temp
104+
.cache
51105

52-
# Thumbnails
53-
._*
106+
# Docusaurus cache and generated files
107+
.docusaurus
54108

55-
# Files that might appear on external disk
56-
.Spotlight-V100
57-
.Trashes
109+
# Serverless directories
110+
.serverless/
58111

59-
# Windows
60-
# =========================
112+
# FuseBox cache
113+
.fusebox/
61114

62-
# Windows image file caches
63-
Thumbs.db
64-
ehthumbs.db
115+
# DynamoDB Local files
116+
.dynamodb/
65117

66-
# Folder config file
67-
Desktop.ini
118+
# TernJS port file
119+
.tern-port
68120

69-
# Recycle Bin used on file shares
70-
$RECYCLE.BIN/
121+
# Stores VSCode versions used for testing VSCode extensions
122+
.vscode-test
71123

72-
# Windows Installer files
73-
*.cab
74-
*.msi
75-
*.msm
76-
*.msp
124+
# yarn v2
125+
.yarn/cache
126+
.yarn/unplugged
127+
.yarn/build-state.yml
128+
.yarn/install-state.gz
129+
.pnp.*

0 commit comments

Comments
 (0)