Skip to content

Commit

Permalink
v2.0.7 - Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jameelmoses committed May 28, 2021
1 parent 117eeee commit 7d9d7e3
Show file tree
Hide file tree
Showing 6 changed files with 607 additions and 547 deletions.
15 changes: 0 additions & 15 deletions .eslintrc

This file was deleted.

12 changes: 12 additions & 0 deletions .eslintrc.yml
@@ -0,0 +1,12 @@
extends: standard
env:
node: true
globals:
describe: true
it: true
before: true
rules:
semi:
- 2
- always
space-before-function-paren: 0
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -202,6 +202,9 @@ Credit largely goes to @sindresorhus for his [load-grunt-plugins](https://github

## Changelog

##### 2.0.7
- Update dependencies

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

Expand Down
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -143,8 +143,8 @@ module.exports = function(options) {
}
}

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

unique(micromatch(names, pattern)).forEach((name) => {
let decomposition;
Expand Down
10 changes: 5 additions & 5 deletions package.json
@@ -1,10 +1,10 @@
{
"name": "gulp-load-plugins",
"version": "2.0.6",
"version": "2.0.7",
"description": "Automatically load any gulp plugins in your package.json",
"scripts": {
"test": "yarn run lint && NODE_PATH=test/global_modules mocha",
"lint": "eslint **/*.js"
"lint": "eslint . --ignore-path .gitignore"
},
"license": "MIT",
"files": [
Expand All @@ -23,7 +23,7 @@
],
"author": "Jack Franklin",
"contributors": [
"Jameel Moses <hello@jameelmoses.com>",
"Jameel Moses <jameelmoses@gmail.com>",
"Pascal Hartig",
"Ben Briggs",
"kombucha",
Expand Down Expand Up @@ -56,10 +56,10 @@
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.1.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3"
"sinon": "^11.1.1"
}
}

0 comments on commit 7d9d7e3

Please sign in to comment.