Skip to content

Commit

Permalink
updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jameelmoses committed Aug 18, 2020
1 parent 3618f19 commit d84b4d3
Show file tree
Hide file tree
Showing 4 changed files with 509 additions and 553 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Before you start working on an idea, make sure:

### Writing the code

- 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.
- 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.
- Be sure to add yourself as a contributor to the [package.json](https://github.com/jackfranklin/gulp-load-plugins/blob/master/package.json) file.
- 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.
- If you have any questions at all, please don't hesitate to get in touch. We're here to help :)
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ Credit largely goes to @sindresorhus for his [load-grunt-plugins](https://github

## Changelog

##### 2.0.4
- Update dependencies

##### 2.0.3
- Update dependencies

##### 2.0.2
- Update dependencies

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "gulp-load-plugins",
"version": "2.0.3",
"version": "2.0.4",
"description": "Automatically load any gulp plugins in your package.json",
"scripts": {
"test": "npm run lint && NODE_PATH=test/global_modules mocha",
"test": "yarn run lint && NODE_PATH=test/global_modules mocha",
"lint": "eslint **/*.js"
},
"license": "MIT",
Expand Down Expand Up @@ -48,18 +48,18 @@
"gulplog": "^1.0.0",
"has-gulplog": "^0.1.0",
"micromatch": "^4.0.2",
"resolve": "^1.15.1"
"resolve": "^1.17.0"
},
"devDependencies": {
"capture-stream": "^0.1.2",
"eslint": "^6.8.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"mocha": "^8.1.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.1"
"sinon": "^9.0.3"
}
}
Loading

0 comments on commit d84b4d3

Please sign in to comment.