Skip to content

Commit 6adde10

Browse files
authored
Merge pull request #9 from jaimeadf/dev
New version
2 parents 3d387f6 + 0c9026b commit 6adde10

Some content is hidden

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

52 files changed

+4280
-1164
lines changed

.babelrc

Lines changed: 0 additions & 13 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 206 deletions
Original file line numberDiff line numberDiff line change
@@ -1,211 +1,10 @@
1-
### JetBrains ###
2-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4-
5-
# User-specific stuff
6-
.idea
7-
8-
# Gradle and Maven with auto-import
9-
# When using Gradle or Maven with auto-import, you should exclude module files,
10-
# since they will be recreated, and may cause churn. Uncomment if using
11-
# auto-import.
12-
# .idea/artifacts
13-
# .idea/compiler.xml
14-
# .idea/jarRepositories.xml
15-
# .idea/modules.xml
16-
# .idea/*.iml
17-
# .idea/modules
18-
# *.iml
19-
# *.ipr
20-
21-
# CMake
22-
cmake-build-*/
23-
24-
# Mongo Explorer plugin
25-
.idea/**/mongoSettings.xml
26-
27-
# File-based project format
28-
*.iws
29-
30-
# IntelliJ
31-
out/
32-
33-
# mpeltonen/sbt-idea plugin
34-
.idea_modules/
35-
36-
# JIRA plugin
37-
atlassian-ide-plugin.xml
38-
39-
# Cursive Clojure plugin
40-
.idea/replstate.xml
41-
42-
# Crashlytics plugin (for Android Studio and IntelliJ)
43-
com_crashlytics_export_strings.xml
44-
crashlytics.properties
45-
crashlytics-build.properties
46-
fabric.properties
47-
48-
# Editor-based Rest Client
49-
.idea/httpRequests
50-
51-
# Android studio 3.1+ serialized cache file
52-
.idea/caches/build_file_checksums.ser
53-
54-
### JetBrains Patch ###
55-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
56-
57-
# *.iml
58-
# modules.xml
59-
# .idea/misc.xml
60-
# *.ipr
61-
62-
# Sonarlint plugin
63-
# https://plugins.jetbrains.com/plugin/7973-sonarlint
64-
.idea/**/sonarlint/
65-
66-
# SonarQube Plugin
67-
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
68-
.idea/**/sonarIssues.xml
69-
70-
# Markdown Navigator plugin
71-
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
72-
.idea/**/markdown-navigator.xml
73-
.idea/**/markdown-navigator-enh.xml
74-
.idea/**/markdown-navigator/
75-
76-
# Cache file creation bug
77-
# See https://youtrack.jetbrains.com/issue/JBR-2257
78-
.idea/$CACHE_FILE$
79-
80-
# CodeStream plugin
81-
# https://plugins.jetbrains.com/plugin/12206-codestream
82-
.idea/codestream.xml
83-
84-
### Node ###
85-
# Logs
86-
logs
87-
*.log
88-
npm-debug.log*
89-
yarn-debug.log*
90-
yarn-error.log*
91-
lerna-debug.log*
92-
package-lock.json
93-
94-
# Diagnostic reports (https://nodejs.org/api/report.html)
95-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
96-
97-
# Runtime data
98-
pids
99-
*.pid
100-
*.seed
101-
*.pid.lock
102-
103-
# Directory for instrumented libs generated by jscoverage/JSCover
104-
lib-cov
105-
106-
# Coverage directory used by tools like istanbul
107-
coverage
108-
*.lcov
109-
110-
# nyc test coverage
111-
.nyc_output
112-
113-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
114-
.grunt
115-
116-
# Bower dependency directory (https://bower.io/)
117-
bower_components
118-
119-
# node-waf configuration
120-
.lock-wscript
121-
122-
# Compiled binary addons (https://nodejs.org/api/addons.html)
123-
build/Release
124-
125-
# Dependency directories
126-
node_modules/
127-
jspm_packages/
128-
129-
# TypeScript v1 declaration files
130-
typings/
131-
132-
# TypeScript cache
133-
*.tsbuildinfo
134-
135-
# Optional npm cache directory
136-
.npm
137-
138-
# Optional eslint cache
139-
.eslintcache
140-
141-
# Microbundle cache
142-
.rpt2_cache/
143-
.rts2_cache_cjs/
144-
.rts2_cache_es/
145-
.rts2_cache_umd/
146-
147-
# Optional REPL history
148-
.node_repl_history
149-
150-
# Output of 'npm pack'
151-
*.tgz
152-
153-
# Yarn Integrity file
154-
.yarn-integrity
155-
156-
# dotenv environment variables file
157-
.env
158-
.env.test
159-
.env*.local
160-
161-
# parcel-bundler cache (https://parceljs.org/)
162-
.cache
163-
.parcel-cache
164-
165-
# Next.js build output
166-
.next
167-
168-
# Nuxt.js build / generate output
169-
.nuxt
1+
node_modules
1702
dist
3+
*.log
4+
.yarn.*
1715

172-
# Gatsby files
173-
.cache/
174-
# Comment in the public line in if your project uses Gatsby and not Next.js
175-
# https://nextjs.org/blog/next-9-1#public-directory-support
176-
# public
177-
178-
# vuepress build output
179-
.vuepress/dist
180-
181-
# Serverless directories
182-
.serverless/
183-
184-
# FuseBox cache
185-
.fusebox/
186-
187-
# DynamoDB Local files
188-
.dynamodb/
189-
190-
# TernJS port file
191-
.tern-port
192-
193-
# Stores VSCode versions used for testing VSCode extensions
194-
.vscode-test
195-
196-
### VisualStudioCode ###
197-
.vscode/*
198-
!.vscode/settings.json
199-
!.vscode/tasks.json
200-
!.vscode/launch.json
201-
!.vscode/extensions.json
202-
*.code-workspace
203-
204-
### VisualStudioCode Patch ###
205-
# Ignore all local history of files
206-
.history
207-
.ionide
6+
.vscode
7+
.idea
2088

209-
### Others ###
2109
/settings.json
21110
/fxmanifest.lua

LICENSE

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
Copyright 2020 jaimeadf
1+
Copyright (c) 2020 Jaime Filho
22

3-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
410

5-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
613

7-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)