File tree Expand file tree Collapse file tree 6 files changed +552
-17
lines changed Expand file tree Collapse file tree 6 files changed +552
-17
lines changed Original file line number Diff line number Diff line change 5
5
"imageSize" : 100 ,
6
6
"commit" : false ,
7
7
"contributors" : [
8
+ {
9
+ "login" : " mcnaveen" ,
10
+ "name" : " MC Naveen" ,
11
+ "avatar_url" : " https://avatars.githubusercontent.com/u/8493007?v=4" ,
12
+ "profile" : " https://github.com/mcnaveen" ,
13
+ "contributions" : [
14
+ " code" ,
15
+ " data" ,
16
+ " doc" ,
17
+ " ideas" ,
18
+ " maintenance" ,
19
+ " review"
20
+ ]
21
+ },
8
22
{
9
23
"login" : " jonah-butler" ,
10
24
"name" : " jonah-butler" ,
35
49
"repoType" : " github" ,
36
50
"repoHost" : " https://github.com" ,
37
51
"skipCi" : true
38
- }
52
+ }
Original file line number Diff line number Diff line change 99
99
- Go Live
100
100
```
101
101
102
+ ## ✍️ Commit
103
+
104
+ - Stage all changes
105
+ ```
106
+ git add .
107
+ ```
108
+ - Commit the changes
109
+ ```
110
+ yarn commit
111
+ ```
112
+ - Push the changes to GitHub
113
+ ```
114
+ git push <TO YOUR FORK>
115
+ ```
116
+
102
117
## ⚛ CREDITS
103
118
104
119
- Thanks to [ Santhosh Veer] ( https://github.com/mskian ) for Progressive Web APP - [ Source Code] ( https://github.com/mskian/vue-random-words )
Original file line number Diff line number Diff line change 9
9
"cheerio" : " ^1.0.0-rc.12" ,
10
10
"express" : " ^4.18.1" ,
11
11
"node-pronounce" : " ^0.0.4" ,
12
+ "random-array-item" : " ^0.0.2" ,
12
13
"random-useragent" : " ^0.5.0"
13
14
},
14
15
"scripts" : {
15
16
"test" : " echo \" Error: no test specified\" && exit 1" ,
16
17
"start" : " node index.js" ,
17
18
"action" : " node test.js" ,
18
- "dev" : " nodemon index.js --ext '*'"
19
+ "dev" : " nodemon index.js --ext '*'" ,
20
+ "commit" : " gacp"
19
21
},
20
22
"type" : " module" ,
21
23
"keywords" : [
35
37
"author" : " MC Naveen" ,
36
38
"license" : " MIT" ,
37
39
"devDependencies" : {
40
+ "gacp" : " ^3.0.2" ,
38
41
"nodemon" : " ^2.0.18"
42
+ },
43
+ "gacp" : {
44
+ "add" : false ,
45
+ "push" : false ,
46
+ "emoji" : " emoji" ,
47
+ "editor" : false
39
48
}
40
- }
49
+ }
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import express from "express";
2
2
const router = express . Router ( ) ;
3
3
import { pronounce } from "node-pronounce" ;
4
4
import { readFileSync } from "fs" ;
5
- import { randomArrayItem } from "../utils/randomArrayItem.js " ;
5
+ import { randomArrayItem } from "random-array-item " ;
6
6
var dutchRandomWord = [ ] ;
7
7
const dutchWordsData = JSON . parse ( readFileSync ( new URL ( "../data/dutch/words.json" , import . meta. url ) ) ) ;
8
8
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments