Skip to content
This repository was archived by the owner on Jul 26, 2024. It is now read-only.

Commit 92d2d55

Browse files
committed
Include npm,yarn and cypress in .gitignore
1 parent c25d774 commit 92d2d55

File tree

1 file changed

+166
-1
lines changed

1 file changed

+166
-1
lines changed

.gitignore

Lines changed: 166 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,169 @@ output
22
runner-results
33
xunit.xml
44
test-results.xml
5-
node_modules
5+
6+
### CypressIO ###
7+
# gitignore template for the CypressIO, browser test framework
8+
# website: https://www.cypress.io/
9+
10+
cypress/results/*
11+
cypress/reports/*
12+
cypress/screenshots/*
13+
cypress/videos/*
14+
15+
### Node ###
16+
# Logs
17+
logs
18+
*.log
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
lerna-debug.log*
23+
.pnpm-debug.log*
24+
25+
# Diagnostic reports (https://nodejs.org/api/report.html)
26+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
27+
28+
# Runtime data
29+
pids
30+
*.pid
31+
*.seed
32+
*.pid.lock
33+
34+
# Directory for instrumented libs generated by jscoverage/JSCover
35+
lib-cov
36+
37+
# Coverage directory used by tools like istanbul
38+
coverage
39+
*.lcov
40+
41+
# nyc test coverage
42+
.nyc_output
43+
44+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
45+
.grunt
46+
47+
# Bower dependency directory (https://bower.io/)
48+
bower_components
49+
50+
# node-waf configuration
51+
.lock-wscript
52+
53+
# Compiled binary addons (https://nodejs.org/api/addons.html)
54+
build/Release
55+
56+
# Dependency directories
57+
node_modules/
58+
jspm_packages/
59+
60+
# Snowpack dependency directory (https://snowpack.dev/)
61+
web_modules/
62+
63+
# TypeScript cache
64+
*.tsbuildinfo
65+
66+
# Optional npm cache directory
67+
.npm
68+
69+
# Optional eslint cache
70+
.eslintcache
71+
72+
# Optional stylelint cache
73+
.stylelintcache
74+
75+
# Microbundle cache
76+
.rpt2_cache/
77+
.rts2_cache_cjs/
78+
.rts2_cache_es/
79+
.rts2_cache_umd/
80+
81+
# Optional REPL history
82+
.node_repl_history
83+
84+
# Output of 'npm pack'
85+
*.tgz
86+
87+
# Yarn Integrity file
88+
.yarn-integrity
89+
90+
# dotenv environment variable files
91+
.env
92+
.env.development.local
93+
.env.test.local
94+
.env.production.local
95+
.env.local
96+
97+
# parcel-bundler cache (https://parceljs.org/)
98+
.cache
99+
.parcel-cache
100+
101+
# Next.js build output
102+
.next
103+
out
104+
105+
# Nuxt.js build / generate output
106+
.nuxt
107+
dist
108+
109+
# Gatsby files
110+
.cache/
111+
# Comment in the public line in if your project uses Gatsby and not Next.js
112+
# https://nextjs.org/blog/next-9-1#public-directory-support
113+
# public
114+
115+
# vuepress build output
116+
.vuepress/dist
117+
118+
# vuepress v2.x temp and cache directory
119+
.temp
120+
121+
# Docusaurus cache and generated files
122+
.docusaurus
123+
124+
# Serverless directories
125+
.serverless/
126+
127+
# FuseBox cache
128+
.fusebox/
129+
130+
# DynamoDB Local files
131+
.dynamodb/
132+
133+
# TernJS port file
134+
.tern-port
135+
136+
# Stores VSCode versions used for testing VSCode extensions
137+
.vscode-test
138+
139+
# yarn v2
140+
.yarn/cache
141+
.yarn/unplugged
142+
.yarn/build-state.yml
143+
.yarn/install-state.gz
144+
.pnp.*
145+
146+
### Node Patch ###
147+
# Serverless Webpack directories
148+
.webpack/
149+
150+
# Optional stylelint cache
151+
152+
# SvelteKit build / generate output
153+
.svelte-kit
154+
155+
### yarn ###
156+
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
157+
158+
.yarn/*
159+
!.yarn/releases
160+
!.yarn/patches
161+
!.yarn/plugins
162+
!.yarn/sdks
163+
!.yarn/versions
164+
165+
# if you are NOT using Zero-installs, then:
166+
# comment the following lines
167+
!.yarn/cache
168+
169+
# and uncomment the following lines
170+
# .pnp.*

0 commit comments

Comments
 (0)