-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
147 changed files
with
8,978 additions
and
3,987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
**/*.js | ||
**/*.d.ts | ||
*.js | ||
*.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: 'Bug Report' | ||
description: What is wrong or needs fixing? | ||
labels: ['bug'] | ||
assignees: [ 'KTNG-3' ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
- Do not share your personal information (token, username, password) | ||
- Make sure it's an issue | ||
- You are using the latest version | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 'Description' | ||
description: 'Explain your problem' | ||
render: Markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: 'Code' | ||
description: 'Example of your code' | ||
render: TypeScript | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: error | ||
attributes: | ||
label: 'Error' | ||
description: 'The error that you get' | ||
validations: | ||
required: false | ||
- type: input | ||
id: platform | ||
attributes: | ||
label: 'Platform' | ||
placeholder: 'e.g. Windows 10, repl.it' | ||
- type: input | ||
id: nodejs | ||
attributes: | ||
label: 'Node.js Version' | ||
description: 'node --version' | ||
placeholder: 'e.g. 18.14.0' | ||
- type: input | ||
id: valapi | ||
attributes: | ||
label: '@valapi Version' | ||
description: 'npm --version valorant.ts' | ||
placeholder: 'e.g. 1.4.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: 'Feature Request' | ||
description: I need something new | ||
labels: [ enhancement, question ] | ||
assignees: [ 'KTNG-3' ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
- Do not share your personal information (token, username, password) | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 'What do you need?' | ||
description: 'Explain what is your need, is that problem?' | ||
render: Markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: 'Code' | ||
description: 'Example of your code' | ||
render: TypeScript | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
contact_links: | ||
- name: Discord Server | ||
url: https://valapi.github.io/url/discord.html | ||
about: Q & A | ||
- name: Documentation | ||
url: https://valapi.github.io/docs/index.html | ||
about: Guide | ||
about: 'Q & A' | ||
url: 'https://valapi.github.io/link/discord' | ||
- name: 'Guide' | ||
about: 'How to use' | ||
url: 'https://valapi.github.io/guide/index.html' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
.git/ | ||
.github/ | ||
node_modules/ | ||
dist/ | ||
test/ | ||
.eslintrc.json | ||
package-lock.json | ||
|
||
# nodejs | ||
npm-debug.log* | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
package.json | ||
tsconfig.json | ||
|
||
# log | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# temp, cache | ||
.npm | ||
.eslintcache | ||
*.tgz | ||
*.tsbuildinfo | ||
|
||
# project | ||
LICENSE | ||
tsconfig.tsbuildinfo | ||
|
||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.