Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
OlehDutchenko committed Jan 4, 2018
1 parent c22088f commit ad4b4db
Show file tree
Hide file tree
Showing 9 changed files with 6,812 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG-RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
> _Все заметные изменения в этом проекте будут задокументированы в этом файле._
> _Этот проект придерживается [Семантического Версионированирования](http://semver.org/lang/ru/)._

### 1.1.4 [2018-01-04]

Удален [устаревший `gulp-util`](https://github.com/gulpjs/gulp-util) из списка зависимостей

---

## 1.1.1 [2017.10.24]
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
> _All notable changes to this project will be documented in this file._
> _This project adheres to [Semantic Versioning](http://semver.org/)._

### 1.1.4 [2018-01-04]

Remove [deprecated `gulp-util`](https://github.com/gulpjs/gulp-util) from dependencies

---

## 1.1.1 [2017.10.24]
Expand Down
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Plugin index
* @module
* @author Oleg Dutchenko <[email protected]>
* @version 1.1.4
*/

// ----------------------------------------
Expand All @@ -12,9 +14,9 @@
// modules
const through2 = require('through2');
const notSupportedFile = require('gulp-not-supported-file');
const gutil = require('gulp-util');
const lodash = require('lodash');
const modernizr = require('modernizr');
const PluginError = require('plugin-error');
const Vinyl = require('vinyl');
const chalk = require('chalk');

Expand All @@ -39,7 +41,7 @@ const findTests = require('./utils/find-tests');
* @private
*/
function pluginError (error, errorOptions) {
return new gutil.PluginError(`${pkg.name}@${pkg.version}`, error, errorOptions);
return new PluginError(`${pkg.name}@${pkg.version}`, error, errorOptions);
}

/**
Expand Down
Loading

0 comments on commit ad4b4db

Please sign in to comment.