Skip to content

Commit 7d9d7e3

Browse files
committed
v2.0.7 - Updating dependencies
1 parent 117eeee commit 7d9d7e3

File tree

6 files changed

+607
-547
lines changed

6 files changed

+607
-547
lines changed

.eslintrc

Lines changed: 0 additions & 15 deletions
This file was deleted.

.eslintrc.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
extends: standard
2+
env:
3+
node: true
4+
globals:
5+
describe: true
6+
it: true
7+
before: true
8+
rules:
9+
semi:
10+
- 2
11+
- always
12+
space-before-function-paren: 0

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,9 @@ Credit largely goes to @sindresorhus for his [load-grunt-plugins](https://github
202202

203203
## Changelog
204204

205+
##### 2.0.7
206+
- Update dependencies
207+
205208
##### 2.0.6
206209
- Update dependencies and add power support for Travis on ppc64le - thanks @dineshks1 - [PR](https://github.com/jackfranklin/gulp-load-plugins/pull/140)
207210

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ module.exports = function(options) {
143143
}
144144
}
145145

146-
const scopeTest = new RegExp('^@');
147-
const scopeDecomposition = new RegExp('^@(.+)/(.+)');
146+
const scopeTest = /^@/;
147+
const scopeDecomposition = /^@(.+)\/(.+)/;
148148

149149
unique(micromatch(names, pattern)).forEach((name) => {
150150
let decomposition;

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "gulp-load-plugins",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "Automatically load any gulp plugins in your package.json",
55
"scripts": {
66
"test": "yarn run lint && NODE_PATH=test/global_modules mocha",
7-
"lint": "eslint **/*.js"
7+
"lint": "eslint . --ignore-path .gitignore"
88
},
99
"license": "MIT",
1010
"files": [
@@ -23,7 +23,7 @@
2323
],
2424
"author": "Jack Franklin",
2525
"contributors": [
26-
"Jameel Moses <hello@jameelmoses.com>",
26+
"Jameel Moses <jameelmoses@gmail.com>",
2727
"Pascal Hartig",
2828
"Ben Briggs",
2929
"kombucha",
@@ -56,10 +56,10 @@
5656
"eslint-config-standard": "^16.0.2",
5757
"eslint-plugin-import": "^2.22.0",
5858
"eslint-plugin-node": "^11.1.0",
59-
"eslint-plugin-promise": "^4.2.1",
59+
"eslint-plugin-promise": "^5.1.0",
6060
"eslint-plugin-standard": "^5.0.0",
6161
"mocha": "^8.1.1",
6262
"proxyquire": "^2.1.3",
63-
"sinon": "^9.0.3"
63+
"sinon": "^11.1.1"
6464
}
6565
}

0 commit comments

Comments
 (0)