Skip to content

Commit dd5c799

Browse files
authored
Merge pull request #1 from HashLips/dev
Added gitignore
2 parents f751638 + 64f0515 commit dd5c799

File tree

3 files changed

+228
-87
lines changed

3 files changed

+228
-87
lines changed

.gitignore

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
# Logs
2+
3+
logs
4+
_.log
5+
npm-debug.log_
6+
yarn-debug.log*
7+
yarn-error.log*
8+
lerna-debug.log\*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
12+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
13+
14+
# Runtime data
15+
16+
pids
17+
_.pid
18+
_.seed
19+
\*.pid.lock
20+
21+
# Directory for instrumented libs generated by jscoverage/JSCover
22+
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
27+
coverage
28+
\*.lcov
29+
30+
# nyc test coverage
31+
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
40+
bower_components
41+
42+
# node-waf configuration
43+
44+
.lock-wscript
45+
46+
# Compiled binary addons (https://nodejs.org/api/addons.html)
47+
48+
build/Release
49+
50+
# Dependency directories
51+
52+
build/
53+
dist/
54+
node_modules/
55+
jspm_packages/
56+
57+
# TypeScript v1 declaration files
58+
59+
typings/
60+
61+
# TypeScript cache
62+
63+
\*.tsbuildinfo
64+
65+
# Optional npm cache directory
66+
67+
.npm
68+
69+
# Optional eslint cache
70+
71+
.eslintcache
72+
73+
# Microbundle cache
74+
75+
.rpt2_cache/
76+
.rts2_cache_cjs/
77+
.rts2_cache_es/
78+
.rts2_cache_umd/
79+
80+
# Optional REPL history
81+
82+
.node_repl_history
83+
84+
# Output of 'npm pack'
85+
86+
\*.tgz
87+
88+
# Yarn Integrity file
89+
90+
.yarn-integrity
91+
92+
# dotenv environment variables file
93+
94+
.env
95+
.env.test
96+
97+
# parcel-bundler cache (https://parceljs.org/)
98+
99+
.cache
100+
101+
# Next.js build output
102+
103+
.next
104+
105+
# Nuxt.js build / generate output
106+
107+
.nuxt
108+
dist
109+
110+
# Gatsby files
111+
112+
.cache/
113+
114+
# Comment in the public line in if your project uses Gatsby and _not_ Next.js
115+
116+
# https://nextjs.org/blog/next-9-1#public-directory-support
117+
118+
# public
119+
120+
# vuepress build output
121+
122+
.vuepress/dist
123+
124+
# Serverless directories
125+
126+
.serverless/
127+
128+
# FuseBox cache
129+
130+
.fusebox/
131+
132+
# DynamoDB Local files
133+
134+
.dynamodb/
135+
136+
# TernJS port file
137+
138+
.tern-port
139+
140+
# OSX
141+
142+
.DS_Store

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)