Skip to content

Commit 27fff86

Browse files
author
dfounderliu
committed
init project
0 parents  commit 27fff86

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+4092
-0
lines changed

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Logs
2+
*.log
3+
npm-debug.log
4+
npm-shrinkwrap.json
5+
package-lock.json
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
dist
12+
13+
# Directory for instrumented libs generated by jscoverage/JSCover
14+
lib-cov
15+
16+
# Coverage directory used by tools like nyc
17+
coverage
18+
/.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directory
30+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
31+
node_modules
32+
33+
# IDE stuff
34+
**/.idea
35+
**/.vs
36+
**/*.iml
37+
38+
# OS stuff
39+
.DS_Store
40+
.tmp
41+
42+
# Serverless stuff
43+
admin.env
44+
.env
45+
tmp
46+
.coveralls.yml
47+
tmpdirs-serverless
48+
*.zip
49+
tracking-config.json
50+
51+
# ESLint cache
52+
.eslintcache
53+
54+
# Misc
55+
jest
56+
57+
# VIM
58+
*.swp
59+
60+
# DotNet
61+
obj/
62+
[Oo]bj/
63+
64+
# Tests
65+
!tests/**/*.zip
66+

0 commit comments

Comments
 (0)