refactor: revert internal exports in utils
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 19 May 2023 16:06:11 +0000 (18:06 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 19 May 2023 16:06:11 +0000 (18:06 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Configuration.ts
src/utils/FileUtils.ts
src/utils/Logger.ts
src/utils/Utils.ts
src/utils/index.ts
src/utils/internal.ts [deleted file]

index 6423e34c3dc76303f7f785e43d3b772dbf954abd..47c5e160e20b86f10713c09eed61fb00ef08c399 100644 (file)
@@ -6,7 +6,6 @@ import chalk from 'chalk';
 import merge from 'just-merge';
 import { WorkerChoiceStrategies } from 'poolifier';
 
-// import { Constants, FileUtils, Utils } from './internal';
 import { Constants } from './Constants';
 import { FileUtils } from './FileUtils';
 import { Utils } from './Utils';
index 328687b2dcdc21f46868d538cb110c0aa9248e7a..9b7f62e0af7431759af8d56c0f18f37f293d8a67 100644 (file)
@@ -2,7 +2,6 @@ import fs from 'node:fs';
 
 import chalk from 'chalk';
 
-// import { Utils, logger } from './internal';
 import { logger } from './Logger';
 import { Utils } from './Utils';
 import type { EmptyObject, FileType, HandleErrorParams, JsonType } from '../types';
index d48659f4bbaea774db5c32b2f44ff784eeaa8245..9bb195a3c65db0841776cb0c5bd38308f94e3443 100644 (file)
@@ -3,7 +3,6 @@ import { type Logger, createLogger, format, type transport } from 'winston';
 import TransportType from 'winston/lib/winston/transports/index.js';
 import DailyRotateFile from 'winston-daily-rotate-file';
 
-// import { Configuration, Utils } from './internal';
 import { Configuration } from './Configuration';
 import { Utils } from './Utils';
 
index 2724f03f4c3aca4b4a0ad2994082ba51f5609726..3d8c73bdf0cdbeec9516dd079832587a0696ebba 100644 (file)
@@ -3,7 +3,6 @@ import util from 'node:util';
 
 import clone from 'just-clone';
 
-// import { Constants } from './internal';
 import { Constants } from './Constants';
 import { WebSocketCloseEventStatusString } from '../types';
 
index 6cb58d8328fcbac8dcef088aa9ee85c6d65080cb..6a68f64f7cdd7492f1e6d627a201d4a948fcb21e 100644 (file)
@@ -1,12 +1,8 @@
-export {
-  ACElectricUtils,
-  AsyncLock,
-  AsyncLockType,
-  CircularArray,
-  Configuration,
-  Constants,
-  DCElectricUtils,
-  FileUtils,
-  Utils,
-  logger,
-} from './internal';
+export { ACElectricUtils, DCElectricUtils } from './ElectricUtils';
+export { AsyncLock, AsyncLockType } from './AsyncLock';
+export { CircularArray } from './CircularArray';
+export { Configuration } from './Configuration';
+export { Constants } from './Constants';
+export { FileUtils } from './FileUtils';
+export { Utils } from './Utils';
+export { logger } from './Logger';
diff --git a/src/utils/internal.ts b/src/utils/internal.ts
deleted file mode 100644 (file)
index f727257..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-export * from './AsyncLock';
-export * from './CircularArray';
-export * from './Constants';
-export * from './ElectricUtils';
-export * from './FileUtils';
-export * from './Utils';
-export * from './Logger';
-export * from './Configuration';