Skip to content

Commit 7239cf1

Browse files
committed
Docs: Update the babel dependencies to install & configuration needed (closes #2136)
1 parent c641369 commit 7239cf1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -119,21 +119,21 @@ gulp.task('default', build);
119119

120120
## Use latest JavaScript version in your gulpfile
121121

122-
Node already supports a lot of **ES2015**, to avoid compatibility problem we suggest to install Babel and rename your `gulpfile.js` as `gulpfile.babel.js`.
122+
Node already supports a lot of __ES2015+__ features, but to avoid compatibility problems we suggest to install Babel and rename your `gulpfile.js` as `gulpfile.babel.js`.
123123

124124
```sh
125-
npm install --save-dev babel-register babel-preset-es2015
125+
npm install --save-dev @babel/register @babel/core @babel/preset-env
126126
```
127127

128128
Then create a **.babelrc** file with the preset configuration.
129129

130130
```js
131131
{
132-
"presets": [ "es2015" ]
132+
"presets": [ "@babel/preset-env" ]
133133
}
134134
```
135135

136-
And here's the same sample from above written in **ES2015**.
136+
And here's the same sample from above written in **ES2015+**.
137137

138138
```js
139139
import gulp from 'gulp';

0 commit comments

Comments
 (0)