Closed labbydev closed 9 years ago
Right now the plugin shuts down when using urls option instead of the url option due to
if (!options.url) { throw new PluginError('gulp-sitespeedio', 'Missing url option to Analyse'); }
I'd recommend:
if (!options.url && !options.urls) { throw new PluginError('gulp-sitespeedio', 'Missing url option to Analyse'); }
Thanks Sure will update!
Updated.
Right now the plugin shuts down when using urls option instead of the url option due to
if (!options.url) { throw new PluginError('gulp-sitespeedio', 'Missing url option to Analyse'); }