Skip to content

Commit 9c85e37

Browse files
author
Valentyn
committed
Merge pull request #18 from MichiganLabs/master
Finish renaming Plugin method to BrowserSyncPlugin
2 parents b4ae734 + de3e089 commit 9c85e37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function BrowserSyncPlugin(browserSyncOptions, options) {
1818
self.browserSyncIsRunning = false;
1919
}
2020

21-
Plugin.prototype.apply = function (compiler) {
21+
BrowserSyncPlugin.prototype.apply = function (compiler) {
2222
var self = this;
2323

2424
compiler.plugin('watch-run', function (watching, callback) {
@@ -45,4 +45,4 @@ Plugin.prototype.apply = function (compiler) {
4545
});
4646
};
4747

48-
module.exports = Plugin;
48+
module.exports = BrowserSyncPlugin;

0 commit comments

Comments
 (0)