Skip to content

Commit b2470c8

Browse files
committed
Merge branch 'dev' into main
2 parents df6cd31 + 86c2c70 commit b2470c8

File tree

17 files changed

+4500
-1730
lines changed

17 files changed

+4500
-1730
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
version: '2.1'
1+
version: 2.1
22
orbs:
3-
node: circleci/node@4.2.1
3+
node: circleci/node@5.0.2
44
jobs:
55
build-and-test:
66
docker:

.github/ISSUE_TEMPLATE/BUG.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: 🐛 Bug Report
2+
description: Found a bug? Let us know!
3+
labels: ["bug","pending"]
4+
assignees:
5+
- warengonzaga
6+
body:
7+
8+
# not existing bug block
9+
- type: checkboxes
10+
id: bug-confirm
11+
attributes:
12+
label: 🤔 Not Existing Bug?
13+
description: Please search to see if an issue already exists for the bug you encountered.
14+
options:
15+
- label: Yes, I'm sure that this is a bug!
16+
required: true
17+
18+
# current results block
19+
- type: textarea
20+
id: bug-current-behavior
21+
attributes:
22+
label: 👀 Current Behavior
23+
description: A concise description of what you're experiencing.
24+
placeholder: I see bugs flying around ewww... please help! 😭
25+
validations:
26+
required: true
27+
28+
# expected behavior block
29+
- type: textarea
30+
id: bug-expected-behavior
31+
attributes:
32+
label: 🎯 Expected Behavior
33+
description: A concise description of what you expected to happen.
34+
placeholder: Bugs supposed to crawl not fly... peaceful life! 🥰
35+
validations:
36+
required: true
37+
38+
# steps to reproduce block
39+
- type: textarea
40+
id: bug-steps-to-reproduce
41+
attributes:
42+
label: 📋 Steps To Reproduce
43+
description: Steps to reproduce the behavior.
44+
placeholder: |
45+
1. I go outside and see a bug. 😁
46+
2. The bug starts to crawl and fly, like wtf! 😱
47+
3. Run!!! 🏃
48+
4. Bugs chasing me while flying! 😫
49+
validations:
50+
required: false
51+
52+
# terms block
53+
- type: checkboxes
54+
id: bug-terms
55+
attributes:
56+
label: 📜 Code of Conduct
57+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/CODE_OF_CONDUCT.md).
58+
options:
59+
- label: I agree to follow this project's [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/CODE_OF_CONDUCT.md).
60+
required: true

.github/ISSUE_TEMPLATE/CONFIG.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🙏 Q&A Forum
4+
url: https://github.com/wareneutron/covid19-tracker-cli/discussions/new?category=q-a
5+
about: Have a question? Let us know!
6+
- name: 🧠 Suggestions
7+
url: https://github.com/wareneutron/covid19-tracker-cli/discussions/new?category=brainstorm
8+
about: Have an idea or suggestion? Let us know!
9+
- name: 📚 Documentation
10+
url: https://docs.wareneutron.com/covid19-tracker-cli
11+
about: Official Documentation for COVID-19 Tracker & CLI

.github/ISSUE_TEMPLATE/FEATURE.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: 🚀 Feature Request
2+
description: Have a feature request? Let us know!
3+
labels: ["feature","pending"]
4+
assignees:
5+
- warengonzaga
6+
body:
7+
8+
# new feature request block
9+
- type: checkboxes
10+
id: feature-confirm-notexist
11+
attributes:
12+
label: 🤔 Not Existing Feature Request?
13+
description: Please search to see if your feature request already exist.
14+
options:
15+
- label: Yes, I'm sure, this is a new requested feature!
16+
required: true
17+
18+
# not idea or suggestion block
19+
- type: checkboxes
20+
id: feature-confirm-notsuggestion
21+
attributes:
22+
label: 🤔 Not an Idea or Suggestion?
23+
description: |
24+
Please make sure that you're submitting a request not just an idea or suggestion.
25+
If this is an idea or suggestion I would recommend going [here](https://github.com/wareneutron/covid19-tracker-cli/discussions/new?category=brainstorm) first before submitting a request.
26+
options:
27+
- label: Yes, I'm sure, this is not idea or suggestion!
28+
required: true
29+
30+
# details block
31+
- type: textarea
32+
id: feature-details
33+
attributes:
34+
label: 📋 Request Details
35+
description: A concise description of your feature request.
36+
placeholder: Add some rainbows and unicorns to it! 🌈🦄
37+
validations:
38+
required: true
39+
40+
# terms block
41+
- type: checkboxes
42+
id: feature-terms
43+
attributes:
44+
label: 📜 Code of Conduct
45+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/CODE_OF_CONDUCT.md).
46+
options:
47+
- label: I agree to follow this project's [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/CODE_OF_CONDUCT.md).
48+
required: true

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,16 @@ dist/
55
.DS_Store
66
.now
77
.env
8+
.dccache
9+
10+
# yarn
11+
.pnp.*
12+
.yarn/*
13+
!.yarn/patches
14+
!.yarn/plugins
15+
!.yarn/releases
16+
!.yarn/sdks
17+
!.yarn/versions
18+
19+
# vercel
20+
.vercel

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 546 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.2.0.cjs

Lines changed: 785 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
7+
yarnPath: .yarn/releases/yarn-3.2.0.cjs
File renamed without changes.

contributing.md renamed to CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Any contributions are welcome, encouraged, and valued. See the following informa
44

55
## 📋 Code of Conduct
66

7-
This project and everyone participating in it is governed by the COVID-19 Tracker & CLI [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/code_of_conduct.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to <[email protected]>.
7+
This project and everyone participating in it is governed by the COVID-19 Tracker & CLI [Code of Conduct](https://github.com/wareneutron/covid19-tracker-cli/blob/main/CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to <[email protected]>.
88

99
## 💖 How to Contribute
1010

@@ -24,7 +24,7 @@ Answering a question in [Discussions](https://github.com/wareneutron/covid19-tra
2424

2525
### 🐞 Reporting Bugs
2626

27-
For any security bugs or issues, please read the [security policy](./security.md).
27+
For any security bugs or issues, please read the [security policy](./SECURITY.md).
2828

2929
---
3030

0 commit comments

Comments
 (0)