From: Jérôme Benoit Date: Mon, 6 Sep 2021 06:11:18 +0000 (+0200) Subject: Cleanup files and files name. X-Git-Tag: v1.0.56~12 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b4d3425171fa4e08c00e84f129b0c1edd2fb9585;hp=d4bc21e04c653b325c1b7d8cb28fe928915a3c28;p=e-mobility-charging-stations-simulator.git Cleanup files and files name. Signed-off-by: Jérôme Benoit --- diff --git a/.cfignore b/.cfignore index 878b6bc3..19d6778c 100644 --- a/.cfignore +++ b/.cfignore @@ -5,9 +5,11 @@ .github .jshintrc .eslintrc +.editorconfig .vscode .clinic .tscache +.xmake.cfg # Logs *.log # Winston diff --git a/.xmake.cfg b/.xmake.cfg deleted file mode 100644 index 82d71997..00000000 --- a/.xmake.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[buildplugin] -bundle=true -node-version=8.9.4 \ No newline at end of file diff --git a/ev-simulator-start.bat b/charging-stations-simulator-start.bat similarity index 100% rename from ev-simulator-start.bat rename to charging-stations-simulator-start.bat diff --git a/ev-simulator-start.sh b/charging-stations-simulator-start.sh similarity index 100% rename from ev-simulator-start.sh rename to charging-stations-simulator-start.sh diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index a187a8a8..f3311672 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -1,3 +1,5 @@ +// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. + import { ChargingStationWorkerData, WorkerMessage, WorkerMessageEvents } from '../types/Worker'; import Configuration from '../utils/Configuration'; diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index e3dd077d..6a8df931 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -1,3 +1,5 @@ +// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. + import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/Responses'; import ChargingStationConfiguration, { ConfigurationKey } from '../types/ChargingStationConfiguration'; import ChargingStationTemplate, { CurrentType, PowerUnits, Voltage } from '../types/ChargingStationTemplate'; diff --git a/src/charging-station/ocpp/OCPPError.ts b/src/charging-station/ocpp/OCPPError.ts index a4b31a36..cd449b10 100644 --- a/src/charging-station/ocpp/OCPPError.ts +++ b/src/charging-station/ocpp/OCPPError.ts @@ -1,3 +1,5 @@ +// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. + import { IncomingRequestCommand, RequestCommand } from '../../types/ocpp/Requests'; import { ErrorType } from '../../types/ocpp/ErrorType'; diff --git a/src/start.ts b/src/start.ts index 596f0275..a3c14ffa 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,3 +1,5 @@ +// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. + import Bootstrap from './charging-station/Bootstrap'; import chalk from 'chalk';