Silence rollup warnings
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 17 Jan 2023 22:37:19 +0000 (23:37 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 17 Jan 2023 22:37:19 +0000 (23:37 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
rollup.config.mjs
src/charging-station/ChargingStation.ts
src/charging-station/ChargingStationUtils.ts

index 890bc33a0b9ff7eeed53c7cf24d4b6a226367083..95215c2cc35274f1abefaac9a50337f657e18db5 100644 (file)
@@ -39,7 +39,7 @@ export default {
     'async_hooks',
     'basic-ftp',
     'chalk',
-    'crypto',
+    'node:crypto',
     'fs',
     'http',
     'http-status-codes',
index 84930a5f628be1f99ed0e010778b55474961729c..a87ef6f2145bf6c89cd8a946bb27a593366290ee 100644 (file)
@@ -1,7 +1,7 @@
 // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-import crypto from 'crypto';
 import fs from 'fs';
+import crypto from 'node:crypto';
 import path from 'path';
 import { URL } from 'url';
 import { parentPort } from 'worker_threads';
index aa021663dba1ca2daac6bc3e84128ea1aaa39023..ed12aa4acf697bf01c351e9d4cc0857c77c763e4 100644 (file)
@@ -1,4 +1,4 @@
-import crypto from 'crypto';
+import crypto from 'node:crypto';
 import path from 'path';
 import { fileURLToPath } from 'url';