Skip to content

Commit fa9710e

Browse files
committed
Minor tweaks
1 parent 674e320 commit fa9710e

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- [Packages](#packages)
1515
- [Running tests](#running-tests)
1616
- [Contributing](CONTRIBUTING.md)
17-
- [Development Checklist](https://github.com/devisle/advanced-react-cli/tree/master/docs)
17+
- [Development Checklist](https://github.com/devisle/advanced-react-cli/tree/master/doc)
1818
- [What does this do?](#what-does-this-do)
1919
- [FAQs](#faqs)
2020
- [Dev Isle community](#dev-isle-community)
@@ -116,7 +116,7 @@ We are continuously working on improving the CLI. But, as of this current stable
116116
1. How can I test this out?
117117

118118
- If you'd like to try it out , Run the following command `npx advanced-react-cli` in your terminal.
119-
- We are still continuing to work on our [Development Checklist](https://github.com/devisle/advanced-react-cli/tree/master/docs).
119+
- We are still continuing to work on our [Development Checklist](https://github.com/devisle/advanced-react-cli/tree/master/doc).
120120

121121
- Ensure you have git version control, and package manager - either npm (node package manager) or Yarn Installed. You may check if your system has them installed by running the following commands `git --version` and depending on your package manager of choice, run `npm --version` or `yarn --version`. If you don't have it installed, please visit:
122122

cliRoutes/StateManagement/reduxThunk.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ module.exports = class ReduxThunk {
3232
'install',
3333
'Package: Redux-Thunk has been installed successfully! Check out more on how to get started with Redux-Thunk on the following links https://github.com/reduxjs/redux-thunk'
3434
)
35-
console.log()
36-
3735
break
3836

3937
case 'Yarn':
@@ -62,7 +60,6 @@ module.exports = class ReduxThunk {
6260
'uninstall',
6361
'Package: Redux-Thunk has been uninstalled successfully!'
6462
)
65-
6663
break
6764
}
6865
}

cliRoutes/StylingPackages/nodeSass.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ module.exports = class NodeSass {
3939
'install',
4040
'Package: node-sass has been installed successfully!'
4141
)
42-
4342
break
4443

4544
case 'Yarn':

cliRoutes/TypeScript/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ module.exports = class TypeScript {
3333
case 'CustomInstall':
3434
new CustomInstall().prompt(packageInstaller)
3535
break
36+
3637
case 'TypeScript':
3738
new TypeScriptInstall().installOrUninstall(packageInstaller)
3839
break

customNodeCMD/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ Display custom message instead default node progress bar
3535
*/
3636

3737
function getCommand (command, installOrUninstall, finalCommand) {
38-
console.log(`${installOrUninstall}ing Packages...`)
38+
let installTxt = installOrUninstall.replace(
39+
installOrUninstall[0],
40+
installOrUninstall[0].toUpperCase()
41+
)
42+
console.log(`${installTxt}ing Packages...`)
3943
return new Promise((resolve, reject) => {
4044
const subproc = spawn(command, {
4145
stdio: 'inherit',

docs/README.md renamed to doc/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@
1919
- [x] - Deployment to NPM done. Beta testing underway.
2020
- [x] - Stable Release.
2121

22-
## TBD
22+
## In progress
2323

24-
- [ ] - Adding Hooks functionality to the React Component generator
2524
- [ ] - Refactoring (in progress)
2625
- [ ] - Performance optimization (in progress)
2726
- [ ] - Code readability (in progress)
27+
28+
## TBD
29+
30+
- [ ] - Adding Hooks functionality to the React Component generator
2831
- [ ] - Adding progressbar with %.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"bugs": {
5858
"url": "https://github.com/devisle/advanced-react-cli/issues"
5959
},
60-
"homepage": "https://devisle.netlify.com/cli",
60+
"homepage": "https://devisle.netlify.com",
6161
"devDependencies": {
6262
"@babel/cli": "^7.7.7",
6363
"@babel/core": "^7.7.7",
@@ -70,4 +70,4 @@
7070
"lint-staged": "^9.2.0",
7171
"prettier-standard": "^9.1.1"
7272
}
73-
}
73+
}

0 commit comments

Comments
 (0)