var gulp = require('gulp'),
    plugins = require('gulp-load-plugins')({
        pattern: ['*'],
        rename: {
            'browser-sync': 'browserSync',
        }
    });
plugins.browserSync = plugins.browserSync.create(); 
Is this the right way of manually calling plugins.browserSync = plugins.browserSync.create(); after loading plugins or there is some option provided for doing the same?