Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / utils / FileUtils.ts
index f38bde6c8ea66218887438eefa23832c7e6aa0e9..7d1dbd665ef3ad3dcc33dac9ff83edd9f7beecc8 100644 (file)
@@ -1,13 +1,19 @@
+import fs from 'fs';
+
+import chalk from 'chalk';
+
 import { EmptyObject } from '../types/EmptyObject';
-import { FileType } from '../types/FileType';
 import { HandleErrorParams } from '../types/Error';
+import { FileType } from '../types/FileType';
 import { JsonType } from '../types/JsonType';
-import Utils from './Utils';
-import chalk from 'chalk';
-import fs from 'fs';
 import logger from './Logger';
+import Utils from './Utils';
 
 export default class FileUtils {
+  private constructor() {
+    // This is intentional
+  }
+
   public static watchJsonFile<T extends JsonType>(
     logPrefix: string,
     fileType: FileType,