Skip to content

Commit 41669ee

Browse files
committed
first commit
0 parents  commit 41669ee

File tree

7 files changed

+6831
-0
lines changed

7 files changed

+6831
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)