Skip to content

Commit e659b12

Browse files
committed
Following a pattern and use have for plular nouns
1 parent 2e1a2c5 commit e659b12

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

cliRoutes/StateManagement/redux.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = class Redux {
4747
'install'
4848
)
4949
console.log(
50-
'Packages: redux & react-redux has been installed successfully!'
50+
'Packages: redux & react-redux have been installed successfully!'
5151
)
5252
console.log('Redux Store has been created successfully!')
5353
break
@@ -61,7 +61,7 @@ module.exports = class Redux {
6161
'install'
6262
)
6363
console.log(
64-
'Packages: redux & react-redux has been installed successfully!'
64+
'Packages: redux & react-redux have been installed successfully!'
6565
)
6666
console.log('Redux Store has been created successfully!')
6767
break
@@ -79,7 +79,7 @@ module.exports = class Redux {
7979
'uninstall'
8080
)
8181
console.log(
82-
'Packages: redux & react-redux has been uninstalled successfully!'
82+
'Packages: redux & react-redux have been uninstalled successfully!'
8383
)
8484
break
8585

@@ -92,7 +92,7 @@ module.exports = class Redux {
9292
'uninstall'
9393
)
9494
console.log(
95-
'Packages: redux & react-redux has been uninstalled successfully!'
95+
'Packages: redux & react-redux have been uninstalled successfully!'
9696
)
9797
break
9898
}

cliRoutes/StateManagement/reduxThunk.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module.exports = class ReduxThunk {
3434
},
3535
'install'
3636
)
37-
console.log('Package: Redux-Thunk has been installed!')
37+
console.log('Package: Redux-Thunk has been installed successfully!')
3838
console.log(
3939
'Check out more on how to get started with Redux-Thunk on the following links https://github.com/reduxjs/redux-thunk '
4040
)
@@ -48,7 +48,7 @@ module.exports = class ReduxThunk {
4848
},
4949
'install'
5050
)
51-
console.log('Package: Redux-Thunk has been installed!')
51+
console.log('Package: Redux-Thunk has been installed successfully!')
5252
console.log(
5353
'Check out more on how to get started with Redux-Thunk on the following links https://github.com/reduxjs/redux-thunk '
5454
)
@@ -66,7 +66,7 @@ module.exports = class ReduxThunk {
6666
},
6767
'uninstall'
6868
)
69-
console.log('Package: Redux-Thunk has been uninstalled!')
69+
console.log('Package: Redux-Thunk has been uninstalled successfully!')
7070
break
7171

7272
case 'Yarn':
@@ -77,7 +77,7 @@ module.exports = class ReduxThunk {
7777
},
7878
'uninstall'
7979
)
80-
console.log('Package: Redux-Thunk has been uninstalled!')
80+
console.log('Package: Redux-Thunk has been uninstalled successfully!')
8181
break
8282
}
8383
}

cliRoutes/StateManagement/unstated.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = class Unstated {
4040
console.log(
4141
'Check out more on how to get started with unstated on the following link https://github.com/jamiebuilds/unstated'
4242
)
43-
console.log('Package: Unstated has been installed!')
43+
console.log('Package: Unstated has been installed successfully!')
4444
break
4545

4646
case 'Yarn':
@@ -54,7 +54,7 @@ module.exports = class Unstated {
5454
console.log(
5555
'Check out more on how to get started with unstated on the following link https://github.com/jamiebuilds/unstated'
5656
)
57-
console.log('Package: Unstated has been installed!')
57+
console.log('Package: Unstated has been installed successfully!')
5858
break
5959
}
6060
}
@@ -69,7 +69,7 @@ module.exports = class Unstated {
6969
},
7070
'uninstall'
7171
)
72-
console.log('Package: Unstated has been uninstalled!')
72+
console.log('Package: Unstated has been uninstalled successfully!')
7373
break
7474

7575
case 'Yarn':
@@ -80,7 +80,7 @@ module.exports = class Unstated {
8080
},
8181
'uninstall'
8282
)
83-
console.log('Package: Unstated has been uninstalled!')
83+
console.log('Package: Unstated has been uninstalled successfully!')
8484
break
8585
}
8686
}

cliRoutes/StateManagement/unstatedNext.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = class UnstatedNext {
4040
console.log(
4141
'Check out more on how to get started with unstated-next on the following link https://github.com/jamiebuilds/unstated-next '
4242
)
43-
console.log('Package: Unstated-next has been installed!')
43+
console.log('Package: Unstated-next has been installed successfully!')
4444
break
4545

4646
case 'Yarn':
@@ -54,7 +54,7 @@ module.exports = class UnstatedNext {
5454
console.log(
5555
'Check out more on how to get started with unstated-next on the following link https://github.com/jamiebuilds/unstated-next '
5656
)
57-
console.log('Package: Unstated-next has been installed!')
57+
console.log('Package: Unstated-next has been installed successfully!')
5858
break
5959
}
6060
}
@@ -69,7 +69,7 @@ module.exports = class UnstatedNext {
6969
},
7070
'uninstall'
7171
)
72-
console.log('Package: Unstated-next has been uninstalled!')
72+
console.log('Package: Unstated-next has been uninstalled successfully!')
7373
break
7474

7575
case 'Yarn':
@@ -80,7 +80,7 @@ module.exports = class UnstatedNext {
8080
},
8181
'uninstall'
8282
)
83-
console.log('Package: Unstated-next has been uninstalled!')
83+
console.log('Package: Unstated-next has been uninstalled successfully!')
8484
break
8585
}
8686
}

cliRoutes/reactrouter.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = class ReactRouter {
4444
'install'
4545
)
4646
console.log(
47-
'Packages: react-router & react-router-dom has been installed successfully!'
47+
'Packages: react-router & react-router-dom have been installed successfully!'
4848
)
4949
break
5050

@@ -57,7 +57,7 @@ module.exports = class ReactRouter {
5757
'install'
5858
)
5959
console.log(
60-
'Packages: react-router & react-router-dom has been installed successfully!'
60+
'Packages: react-router & react-router-dom have been installed successfully!'
6161
)
6262
break
6363
}
@@ -74,7 +74,7 @@ module.exports = class ReactRouter {
7474
'uninstall'
7575
)
7676
console.log(
77-
'Packages: react-router & react-router-dom has been uninstalled successfully!'
77+
'Packages: react-router & react-router-dom have been uninstalled successfully!'
7878
)
7979
break
8080

@@ -87,7 +87,7 @@ module.exports = class ReactRouter {
8787
'uninstall'
8888
)
8989
console.log(
90-
'Packages: react-router & react-router-dom has been uninstalled successfully!'
90+
'Packages: react-router & react-router-dom have been uninstalled successfully!'
9191
)
9292
break
9393
}

0 commit comments

Comments
 (0)