Skip to content

Commit

Permalink
chore(deps): bump dependencies (#2854)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttbarnes authored Aug 1, 2024
1 parent 5b89b05 commit e54ad64
Show file tree
Hide file tree
Showing 8 changed files with 407 additions and 395 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ context('Insurance - Policy - Single contract policy page - Save and go back', (
// enter an invalid date
const now = new Date();
const day = now.getDate();
const month = now.getMonth() + 1;

const yesterday = new Date(now.setDate(day - 1));
const yesterdayMonth = yesterday.getMonth() + 1;

cy.keyboardInput(field.dayInput(), yesterday.getDate());
cy.keyboardInput(field.monthInput(), month);
cy.keyboardInput(field.monthInput(), yesterdayMonth);
cy.keyboardInput(field.yearInput(), yesterday.getFullYear());

cy.clickSaveAndBackButton();
Expand Down
358 changes: 185 additions & 173 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
"@commitlint/config-conventional": "19.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"commitlint": "^19.3.0",
"cspell": "^8.12.1",
"cspell": "^8.13.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
Expand All @@ -80,7 +80,7 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
Expand Down
10 changes: 2 additions & 8 deletions src/api/.keystone/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

203 changes: 103 additions & 100 deletions src/api/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"test": "jest --runInBand --verbose --silent --coverage --config=jest.config.js"
},
"dependencies": {
"@babel/core": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@graphql-tools/schema": "^10.0.4",
"@keystone-6/auth": "^7.0.3",
Expand Down Expand Up @@ -57,8 +57,8 @@
"@types/jsonwebtoken": "^9.0.6",
"@types/mysql": "^2.15.26",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
Expand Down
Loading

0 comments on commit e54ad64

Please sign in to comment.