Skip to content

Commit d84b4d3

Browse files
committed
updating dependencies
1 parent 3618f19 commit d84b4d3

File tree

4 files changed

+509
-553
lines changed

4 files changed

+509
-553
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Before you start working on an idea, make sure:
1414

1515
### Writing the code
1616

17-
- Follow the code standards of the existing project. We use ESLint to keep our code formatted, and running `npm test` will first run `eslint` before the tests so you can ensure you've followed the style.
17+
- Follow the code standards of the existing project. We use ESLint to keep our code formatted, and running `yarn test` will first run `eslint` before the tests so you can ensure you've followed the style.
1818
- Be sure to add yourself as a contributor to the [package.json](https://github.com/jackfranklin/gulp-load-plugins/blob/master/package.json) file.
1919
- If possible, write a test that covers the bug fix / feature addition that you're making. If you're unsure how to write the test, open your PR first and someone will help you.
2020
- If you have any questions at all, please don't hesitate to get in touch. We're here to help :)

README.md

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

203203
## Changelog
204204

205+
##### 2.0.4
206+
- Update dependencies
207+
208+
##### 2.0.3
209+
- Update dependencies
210+
205211
##### 2.0.2
206212
- Update dependencies
207213

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "gulp-load-plugins",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Automatically load any gulp plugins in your package.json",
55
"scripts": {
6-
"test": "npm run lint && NODE_PATH=test/global_modules mocha",
6+
"test": "yarn run lint && NODE_PATH=test/global_modules mocha",
77
"lint": "eslint **/*.js"
88
},
99
"license": "MIT",
@@ -48,18 +48,18 @@
4848
"gulplog": "^1.0.0",
4949
"has-gulplog": "^0.1.0",
5050
"micromatch": "^4.0.2",
51-
"resolve": "^1.15.1"
51+
"resolve": "^1.17.0"
5252
},
5353
"devDependencies": {
5454
"capture-stream": "^0.1.2",
55-
"eslint": "^6.8.0",
55+
"eslint": "^7.7.0",
5656
"eslint-config-standard": "^14.1.1",
57-
"eslint-plugin-import": "^2.20.2",
57+
"eslint-plugin-import": "^2.22.0",
5858
"eslint-plugin-node": "^11.1.0",
5959
"eslint-plugin-promise": "^4.2.1",
6060
"eslint-plugin-standard": "^4.0.1",
61-
"mocha": "^7.1.1",
61+
"mocha": "^8.1.1",
6262
"proxyquire": "^2.1.3",
63-
"sinon": "^9.0.1"
63+
"sinon": "^9.0.3"
6464
}
6565
}

0 commit comments

Comments
 (0)