]> Piment Noir Git Repositories - e-mobility-charging-stations-simulator.git/commitdiff
chore: rename webui component to web for naming consistency
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 3 May 2026 22:16:34 +0000 (00:16 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 3 May 2026 22:17:04 +0000 (00:17 +0200)
Align the web UI package name and identifiers with the directory
structure (ui/web) and the CLI convention (ui/cli → cli). Renames
package.json name, release-please component, Dockerfile pnpm filter,
SonarCloud project key, and screenshot asset filename.

.github/release-please/config.json
ui/web/README.md
ui/web/docker/Dockerfile
ui/web/package.json
ui/web/sonar-project.properties
ui/web/src/assets/screenshot.png [moved from ui/web/src/assets/webui.png with 100% similarity]

index fccd447d71a6af44e89507237c1d847f1e6d7452..2b040dd5c21ab4e9291c71ee97bb19bdc1c3100e 100644 (file)
@@ -20,7 +20,7 @@
       "extra-files": ["sonar-project.properties"]
     },
     "ui/web": {
-      "component": "webui",
+      "component": "web",
       "extra-files": ["sonar-project.properties"]
     },
     "tests/ocpp-server": {
@@ -32,7 +32,7 @@
     {
       "type": "linked-versions",
       "groupName": "simulator-ui-ocpp-server",
-      "components": ["simulator", "ui-common", "cli", "webui", "ocpp-server"]
+      "components": ["simulator", "ui-common", "cli", "web", "ocpp-server"]
     }
   ],
   "changelog-sections": [
index 2dd6aeaf9e1b7cdf51a54c19d62e4062b9d33e23..3e7a385e52f188b26729f5663d71ab9dd536d8cd 100644 (file)
@@ -6,7 +6,7 @@
 
 Vue.js dashboard for monitoring and controlling the e-mobility charging stations simulator via WebSocket.
 
-![Web UI](./src/assets/webui.png)
+![Web UI](./src/assets/screenshot.png)
 
 1. The top bar lets you switch between UI servers, start/stop the simulator, add charging stations, and select themes and skins.
 2. Each charging station is a card with status indicators, connector details, and actions: start, stop, open/close connection, start/stop transaction, and more.
index 63d24ef69c7532178a6e472e13ac823019f4c6bd..5506c3fb27221e1bfcb6339312c851b9ae0d0c9a 100644 (file)
@@ -8,7 +8,7 @@ RUN set -ex \
   && corepack enable \
   && pnpm install --ignore-scripts --frozen-lockfile \
   && cp ui/web/docker/config.json ui/web/public/config.json \
-  && pnpm --filter webui build
+  && pnpm --filter web build
 
 FROM node:lts-alpine
 
index b62d1811695bf589ddff5ba7fb331a00b64f45fc..a5e5e835777d407cc62f4f31248e883ade57c531 100644 (file)
@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package",
-  "name": "webui",
+  "name": "web",
   "version": "4.6.0",
   "readme": "README.md",
   "engines": {
index db2cf1c9137a60fb8f86fdac114779266fef127e..0a6ff212502920c2c81623a49d81d95527e31e08 100644 (file)
@@ -1,13 +1,9 @@
-sonar.projectKey=e-mobility-charging-stations-simulator-webui
+sonar.projectKey=e-mobility-charging-stations-simulator-web
 sonar.organization=sap-1
-
-# This is the name and version displayed in the SonarCloud UI.
-sonar.projectName=e-mobility-charging-stations-simulator-webui
+sonar.projectName=e-mobility-charging-stations-simulator-web
 # x-release-please-start-version
 sonar.projectVersion=4.6.0
 # x-release-please-end
-
-# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
 sonar.sources=src
 sonar.tests=tests