Skip to content

Commit

Permalink
Bumped versions in pre-commit and npm configurations.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm committed Mar 29, 2023
1 parent 3afdc9e commit 8c14243
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.3.0
hooks:
- id: black
exclude: \.py-tpl$
Expand All @@ -9,7 +9,7 @@ repos:
hooks:
- id: blacken-docs
additional_dependencies:
- black==23.1.0
- black==23.3.0
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
Expand All @@ -19,6 +19,6 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.34.0
rev: v8.36.0
hooks:
- id: eslint
9 changes: 9 additions & 0 deletions .puppeteerrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const {join} = require('path');

/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"npm": ">=1.3.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"puppeteer": "^19.7.0",
"eslint": "^8.36.0",
"puppeteer": "^19.8.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-qunit": "^7.0.0",
Expand Down

0 comments on commit 8c14243

Please sign in to comment.