@autofleet/logger 4.0.0-beta-3 → 4.0.0-beta-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -51,8 +51,6 @@ const createLoggerInstance = (level, options) => {
51
51
  return loggerInstance;
52
52
  };
53
53
  class LoggerInstanceManager {
54
- contextMiddlewares;
55
- logger;
56
54
  constructor(logLevel) {
57
55
  this.contextMiddlewares = [];
58
56
  this.logger = createLoggerInstance(getLevel(logLevel), {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/logger",
3
- "version": "4.0.0-beta-3",
3
+ "version": "4.0.0-beta-4",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "coverage": "jest --coverage --forceExit --runInBand",
package/tsconfig.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
3
+ "target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
4
4
  "module": "commonjs", /* Specify what module code is generated. */ /* Allow 'import x from y' when a module doesn't have a default export. */
5
5
  "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
6
6
  // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */