From: Jérôme Benoit Date: Wed, 14 Feb 2024 17:17:31 +0000 (+0100) Subject: fix(ci): fix named import shelljs usage X-Git-Tag: v1.2.37~52 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=e12ff665c34dda5a0048290911fab4a3ad795f45;p=e-mobility-charging-stations-simulator.git fix(ci): fix named import shelljs usage Signed-off-by: Jérôme Benoit --- diff --git a/ui/web/build-prepare.js b/ui/web/build-prepare.js index 8dc7df94..5ac031cf 100644 --- a/ui/web/build-prepare.js +++ b/ui/web/build-prepare.js @@ -1,3 +1,3 @@ -import { cp } from 'shelljs' +import shell from 'shelljs' -cp('src/assets/config-template.ts', 'src/assets/config.ts') +shell.cp('src/assets/config-template.ts', 'src/assets/config.ts')