Skip to content

Commit c02cc5d

Browse files
committed
Update README
1 parent e42fac2 commit c02cc5d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ new/updated site is uploaded to your platform of choice.
5555
* **Start:** Run `gulp` and watch the magic unfold
5656

5757
#### Update
58-
It's recommended that you keep your gulp tasks and packages up to date, luckily
59-
this is very easy with `genertor-jekyllized`! All you need to do is run `yo
60-
jekyllized:update` and you'll be up to date. If you want to skip the
61-
installation and only update you can run it with `--skip-install`. **NOTE:**
62-
Running `yo jekyllized:update` will overwrite any changes made to `package.json`
63-
and your gulp files, so back them up!
58+
To update the generator, run `npm update -g generator-jekyllized` and then run
59+
`yo jekyllized:update` and it will update your packages and gulp tasks. You can
60+
skip installing dependencies by running it with `--skip-install`. **NOTE:**
61+
Updating will overwrite any changes you've done to your gulp tasks and
62+
package.json, so back them up before running it! It will ask before overwriting
63+
though, so you can see the diff before applying it.
6464

6565
## Usage
6666

@@ -186,8 +186,8 @@ copy of the `scripts` gulp task and rename it to `scripts:vendor` and change the
186186
])
187187
```
188188

189-
and then change `.pipe($.concat('index.js'))` into
190-
`.pipe($.concat('vendor.js'))`. Then you go to the bottom of the gulpfile and
189+
and then change `.pipe(concat('index.js'))` into
190+
`.pipe(concat('vendor.js'))`. Then you go to the bottom of the gulpfile and
191191
change the `assets` task:
192192

193193
```js
@@ -217,7 +217,7 @@ site you'll have to change it to this:
217217
```js
218218
gulp.task('deploy', () => {
219219
return gulp.src('dist/**/*')
220-
.pipe($.ghPages({
220+
.pipe(ghPages({
221221
branch: "master"
222222
}));
223223
});

0 commit comments

Comments
 (0)