Skip to content

Commit df6ece2

Browse files
committed
v2.0.1; readme update
1 parent b232441 commit df6ece2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Easily use BrowserSync in your Webpack project.
88
$ npm install --save-dev browser-sync-webpack-plugin
99
```
1010

11-
With release of 2.0.0 plugin is expected to be used in node v4+ environment.
12-
Support for node of v3 and lower was dropped, but you can install and use plugin version of 1.2.0 for old environments.
11+
With release of 2.0.0 the plugin is expected to be used in Node v4+ environment.
12+
Support for Node v3 and lower was dropped, but you can install and use the plugin version of 1.2.0 in older environments.
1313

1414
## Usage:
1515

@@ -27,7 +27,7 @@ The setup is pretty easy: just pass the [BrowserSync options](http://www.browser
2727
In your `webpack.config.js`:
2828

2929
```javascript
30-
var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
30+
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
3131

3232
module.exports = {
3333
// ...
@@ -53,7 +53,7 @@ So, basically, you are about to proxy the output from the Webpack Dev Server thr
5353
In your `webpack.config.js`:
5454

5555
```javascript
56-
var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
56+
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
5757

5858
module.exports = {
5959
// ...

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-sync-webpack-plugin",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "BrowserSync and Webpack integration",
55
"keywords": [
66
"webpack",

0 commit comments

Comments
 (0)