Skip to content

Commit

Permalink
build(deps): apply updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <[email protected]>
  • Loading branch information
Jérôme Benoit committed Jan 15, 2024
1 parent 23f5af6 commit aafba9d
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 181 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@
"@types/node": "^20.11.2",
"@types/tar": "^6.1.10",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"auto-changelog": "^2.4.0",
"c8": "^9.1.0",
"clinic": "^13.0.0",
Expand Down
118 changes: 59 additions & 59 deletions pnpm-lock.yaml

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

6 changes: 2 additions & 4 deletions src/charging-station/ocpp/1.6/OCPP16ServiceUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,7 @@ export class OCPP16ServiceUtils extends OCPPServiceUtils {
.filter((schedulePeriod, index) => {
if (
isWithinInterval(
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
addSeconds(chargingScheduleInterval.start, schedulePeriod.startPeriod)!,
addSeconds(chargingScheduleInterval.start, schedulePeriod.startPeriod),
compositeInterval
)
) {
Expand Down Expand Up @@ -549,8 +548,7 @@ export class OCPP16ServiceUtils extends OCPPServiceUtils {
),
chargingSchedulePeriod: chargingSchedule.chargingSchedulePeriod.filter(schedulePeriod =>
isWithinInterval(
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
addSeconds(chargingScheduleInterval.start, schedulePeriod.startPeriod)!,
addSeconds(chargingScheduleInterval.start, schedulePeriod.startPeriod),
compositeInterval
)
)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ export class Configuration {
if (
!Configuration.configurationFileReloading &&
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
filename!.trim()!.length > 0 &&
filename!.trim().length > 0 &&
event === 'change'
) {
Configuration.configurationFileReloading = true
Expand Down
6 changes: 3 additions & 3 deletions ui/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@
"dependencies": {
"finalhandler": "^1.2.0",
"serve-static": "^1.15.0",
"vue": "^3.4.13",
"vue": "^3.4.14",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.1",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-v8": "^1.2.0",
Expand Down
Loading

0 comments on commit aafba9d

Please sign in to comment.