From: Jérôme Benoit Date: Tue, 4 Oct 2022 13:25:23 +0000 (+0200) Subject: Fix cloud foundry deployment X-Git-Tag: v1.1.76~13 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=c91bd15884a3cdab2ebba9a296d70441742e8f5c;p=e-mobility-charging-stations-simulator.git Fix cloud foundry deployment Signed-off-by: Jérôme Benoit --- diff --git a/.cfignore b/.cfignore index 17ea523f..e4b68291 100644 --- a/.cfignore +++ b/.cfignore @@ -29,6 +29,7 @@ # Temporary .netrwhist *~ +*.bak *.orig *.md *.db @@ -48,6 +49,7 @@ temp outputs coverage node_modules +!dist/node_modules sonar-project.properties performanceRecords.json performanceRecords.json.lock diff --git a/src/charging-station/ChargingStationWorkerBroadcastChannel.ts b/src/charging-station/ChargingStationWorkerBroadcastChannel.ts index 00780f2f..0a0bd532 100644 --- a/src/charging-station/ChargingStationWorkerBroadcastChannel.ts +++ b/src/charging-station/ChargingStationWorkerBroadcastChannel.ts @@ -24,6 +24,7 @@ import { type StopTransactionRequest, type StopTransactionResponse, } from '../types/ocpp/Transaction'; +import { ResponseStatus } from '../types/UIProtocol'; import { BroadcastChannelProcedureName, type BroadcastChannelRequest, @@ -31,7 +32,6 @@ import { type BroadcastChannelResponsePayload, type MessageEvent, } from '../types/WorkerBroadcastChannel'; -import { ResponseStatus } from '../ui/web/src/types/UIProtocol'; import Constants from '../utils/Constants'; import logger from '../utils/Logger'; import Utils from '../utils/Utils';