@dbx-tools/shared-core 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/log.ts +5 -0
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "main": "index.ts",
13
13
  "license": "UNLICENSED",
14
- "version": "0.1.6",
14
+ "version": "0.1.7",
15
15
  "types": "index.ts",
16
16
  "type": "module",
17
17
  "exports": {
package/src/log.ts CHANGED
@@ -378,3 +378,8 @@ export function logger(loggerName: NameLike | string | undefined): Logger {
378
378
  const name = extractLoggerName(loggerName);
379
379
  return createLogger(name);
380
380
  }
381
+
382
+
383
+ if (import.meta.main) {
384
+
385
+ }