Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dutchenkoOleg committed May 26, 2017
1 parent de9395f commit e958caa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ function myGulpPlugin(options) {
// ...

// private method plugin error
function pluginError (data, options) {
return new gutil.PluginError(pluginName, data, options);
function pluginError (data, errorOptions) {
return new gutil.PluginError(pluginName, data, errorOptions);
}

// processing
Expand All @@ -110,7 +110,7 @@ module.exports = myGulpPlugin;

### Module also has few options

Options are passed by the third argument and must an `object`
Options are passed by the third argument and must be an `object`

```js
let notSupported = notSupportedFile(file, pluginError, options);
Expand Down Expand Up @@ -153,15 +153,15 @@ npm install --save gulp-not-supported-file
yarn add gulp-not-supported-file
```

## Changelog

Please read [CHANGELOG.md](https://github.com/dutchenkoOleg/gulp-not-supported-file/blob/master/CHANGELOG.md)

## Tests

1. `npm test` for testing code style and run mocha tests
1. `npm run happiness-fix` for automatically fix problems

## Changelog

Please read [CHANGELOG.md](https://github.com/dutchenkoOleg/gulp-not-supported-file/blob/master/CHANGELOG.md)

## Contributing

Please read [CONTRIBUTING.md](https://github.com/dutchenkoOleg/gulp-not-supported-file/blob/master/CONTRIBUTING.md)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-not-supported-file",
"version": "1.1.1",
"version": "1.1.2",
"description": "Check the file before process it in your Gulp plugin",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e958caa

Please sign in to comment.