Skip to content

Commit

Permalink
v2.0.1; readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Va1 committed Feb 1, 2018
1 parent b232441 commit df6ece2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Easily use BrowserSync in your Webpack project.
$ npm install --save-dev browser-sync-webpack-plugin
```

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

## Usage:

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

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

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

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

module.exports = {
// ...
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-sync-webpack-plugin",
"version": "2.0.0",
"version": "2.0.1",
"description": "BrowserSync and Webpack integration",
"keywords": [
"webpack",
Expand Down

0 comments on commit df6ece2

Please sign in to comment.