Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 8cbfcd7

Browse files
Fix issues in readme and clean code
1 parent 104f53b commit 8cbfcd7

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

Readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@
1616

1717
## Installation
1818
```bash
19-
# Make sure both is installed globally
19+
# Make sure is installed globally
2020
npm install -g yo
2121
npm install -g generator-front-webpack
22+
npm install -g karma-cli
2223
```
2324

2425
## Setting up projects
2526
```bash
2627
# Create a new directory, and `cd` into it:
2728
mkdir new-project && cd new-project
2829

29-
mkdir new-project && cd new-project
30+
# setting up project
31+
yo front-webpack
3032
```
3133

3234
### Commands

generators/app/index.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ module.exports = class extends Generator {
1616

1717
}
1818

19-
// writing() {
20-
// this.fs.copyTpl(
21-
// this.templatePath('_package.json'),
22-
// this.destinationPath('package.json'),
23-
// { title: 'Templating with Yeoman' }
24-
// );
25-
// }
26-
2719
writing () {
2820
// Have Yeoman greet the user.
2921
this.log(yosay(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-front-webpack",
3-
"version": "0.1.3",
3+
"version": "0.1.5",
44
"description": "Generator for modern front end apps",
55
"license": "MIT",
66
"files": [

0 commit comments

Comments
 (0)