From c91bd15884a3cdab2ebba9a296d70441742e8f5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 4 Oct 2022 15:25:23 +0200 Subject: [PATCH] Fix cloud foundry deployment MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .cfignore | 2 ++ src/charging-station/ChargingStationWorkerBroadcastChannel.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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'; -- 2.34.1