Skip to content

Commit f775ca0

Browse files
authored
Merge pull request #117 from code-collabo/release/1.0.0
Release/1.0.0
2 parents 7700521 + d20fb03 commit f775ca0

61 files changed

Lines changed: 1811 additions & 363 deletions

Some content is hidden

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

.all-contributorsrc

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,25 @@
1212
"profile": "https://github.com/Ifycode",
1313
"contributions": [
1414
"code",
15-
"doc",
16-
"infra",
17-
"maintenance",
18-
"review",
19-
"projectManagement",
20-
"ideas"
15+
"doc"
2116
]
2217
},
2318
{
24-
"login": "IsraelObiagba",
25-
"name": "Israel Obiagba",
26-
"avatar_url": "https://avatars.githubusercontent.com/u/14045379?v=4",
27-
"profile": "https://github.com/IsraelObiagba",
19+
"login": "chuddyjoachim",
20+
"name": "Chikezie Joachim",
21+
"avatar_url": "https://avatars.githubusercontent.com/u/56943504?v=4",
22+
"profile": "http://chuddyjoachim.com",
2823
"contributions": [
29-
"mentoring"
24+
"code"
3025
]
3126
},
3227
{
33-
"login": "jiobiagba",
34-
"name": "Joseph Obiagba",
35-
"avatar_url": "https://avatars.githubusercontent.com/u/42423547?v=4",
36-
"profile": "https://github.com/jiobiagba",
28+
"login": "all-contributors",
29+
"name": "All Contributors",
30+
"avatar_url": "https://avatars.githubusercontent.com/u/46410174?v=4",
31+
"profile": "https://allcontributors.org",
3732
"contributions": [
38-
"mentoring"
33+
"infra"
3934
]
4035
}
4136
],

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ indent_size = 2
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
1111

12-
[*.ts]
12+
[.{js,ts}]
1313
quote_type = single
1414

1515
[*.md]

.gitbook/.gitbook.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
root: ./doc
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Create a task
3+
about: Pattern to follow while creating a task to be solved
4+
title: ''
5+
labels: task
6+
assignees: ''
7+
8+
---
9+
10+
Pattern to follow when creating a new task. Note: This is not for bug report. A separate template exists for reporting bugs.
11+
12+
#### Task description
13+
Give brief intro and describe what the task entails.
14+
15+
#### Test cases and expected output
16+
Include test cases e.g. commands to run and expected output. Add screenshots if/where possible.
17+
18+
#### Examples
19+
You can include examples of files, repos, issues or pull requests where something similar to the task you're describing has been done, if any.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Report a bug
3+
about: Found a bug? Create a report to help us improve
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Run this command '....'
17+
3. See error etc.
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Screenshots**
23+
If applicable, add screenshots to help explain your problem.
24+
25+
**Additional context**
26+
Add any other context about the problem here.

.github/pull_request_template.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
**This pull request makes the following changes:**
2+
* Fixes issue code-collabo/node-mongo-cli#issueNumberHere
3+
4+
**Details:**
5+
* Setup for '...'
6+
* Adds '...' etc.
7+
8+
**Testing checklist:**
9+
- [ ] Run '...'
10+
- [ ] Check that '...'
11+
- [ ] Check that '...' etc.
12+
- [ ] I certify that I ran my checklist.
13+
14+
Ping @code-collabo/node-mongo-cli

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [10.x, 12.x, 14.x]
19+
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3+
# testing and rough work
4+
test.js
5+
36
# dependencies
47
/node_modules
58

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

LICENSE

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ISC License (ISC)
2-
Copyright 2021 Code Collabo
2+
Copyright 2021 Obiagba Mary | Code Collabo Community
33

44
Permission to use, copy, modify, and/or
55
distribute this software for any purpose
@@ -18,3 +18,9 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1818
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1919
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
2020
THE USE OR PERFORMANCE OF THIS SOFTWARE.
21+
22+
@dkundel's create-project LICENCE file:
23+
https://github.com/dkundel/create-project/blob/master/LICENSE
24+
25+
List of project resources:
26+
https://code-collabo.gitbook.io/node-mongo/contribution-guide/development-mode#project-resources

0 commit comments

Comments
 (0)