Skip to content

Commit 4f8076d

Browse files
committed
feat: init
0 parents  commit 4f8076d

File tree

10 files changed

+16994
-0
lines changed

10 files changed

+16994
-0
lines changed

.gitignore

Lines changed: 211 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,211 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,node
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,node
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### macOS ###
21+
# General
22+
.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### Node ###
49+
# Logs
50+
logs
51+
*.log
52+
npm-debug.log*
53+
yarn-debug.log*
54+
yarn-error.log*
55+
lerna-debug.log*
56+
57+
# Diagnostic reports (https://nodejs.org/api/report.html)
58+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
59+
60+
# Runtime data
61+
pids
62+
*.pid
63+
*.seed
64+
*.pid.lock
65+
66+
# Directory for instrumented libs generated by jscoverage/JSCover
67+
lib-cov
68+
69+
# Coverage directory used by tools like istanbul
70+
coverage
71+
*.lcov
72+
73+
# nyc test coverage
74+
.nyc_output
75+
76+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
77+
.grunt
78+
79+
# Bower dependency directory (https://bower.io/)
80+
bower_components
81+
82+
# node-waf configuration
83+
.lock-wscript
84+
85+
# Compiled binary addons (https://nodejs.org/api/addons.html)
86+
build/Release
87+
88+
# Dependency directories
89+
node_modules/
90+
jspm_packages/
91+
92+
# TypeScript v1 declaration files
93+
typings/
94+
95+
# TypeScript cache
96+
*.tsbuildinfo
97+
98+
# Optional npm cache directory
99+
.npm
100+
101+
# Optional eslint cache
102+
.eslintcache
103+
104+
# Optional stylelint cache
105+
.stylelintcache
106+
107+
# Microbundle cache
108+
.rpt2_cache/
109+
.rts2_cache_cjs/
110+
.rts2_cache_es/
111+
.rts2_cache_umd/
112+
113+
# Optional REPL history
114+
.node_repl_history
115+
116+
# Output of 'npm pack'
117+
*.tgz
118+
119+
# Yarn Integrity file
120+
.yarn-integrity
121+
122+
# dotenv environment variables file
123+
.env
124+
.env.test
125+
.env*.local
126+
127+
# parcel-bundler cache (https://parceljs.org/)
128+
.cache
129+
.parcel-cache
130+
131+
# Next.js build output
132+
.next
133+
134+
# Nuxt.js build / generate output
135+
.nuxt
136+
dist
137+
138+
# Gatsby files
139+
.cache/
140+
# Comment in the public line in if your project uses Gatsby and not Next.js
141+
# https://nextjs.org/blog/next-9-1#public-directory-support
142+
# public
143+
144+
# vuepress build output
145+
.vuepress/dist
146+
147+
# Serverless directories
148+
.serverless/
149+
150+
# FuseBox cache
151+
.fusebox/
152+
153+
# DynamoDB Local files
154+
.dynamodb/
155+
156+
# TernJS port file
157+
.tern-port
158+
159+
# Stores VSCode versions used for testing VSCode extensions
160+
.vscode-test
161+
162+
### Windows ###
163+
# Windows thumbnail cache files
164+
Thumbs.db
165+
Thumbs.db:encryptable
166+
ehthumbs.db
167+
ehthumbs_vista.db
168+
169+
# Dump file
170+
*.stackdump
171+
172+
# Folder config file
173+
[Dd]esktop.ini
174+
175+
# Recycle Bin used on file shares
176+
$RECYCLE.BIN/
177+
178+
# Windows Installer files
179+
*.cab
180+
*.msi
181+
*.msix
182+
*.msm
183+
*.msp
184+
185+
# Windows shortcuts
186+
*.lnk
187+
188+
# End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux,node
189+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
190+
191+
# dependencies
192+
/node_modules
193+
/.pnp
194+
.pnp.js
195+
196+
# testing
197+
/coverage
198+
199+
# production
200+
/build
201+
202+
# misc
203+
.DS_Store
204+
.env.local
205+
.env.development.local
206+
.env.test.local
207+
.env.production.local
208+
209+
npm-debug.log*
210+
yarn-debug.log*
211+
yarn-error.log*

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.16.0

0 commit comments

Comments
 (0)