@crimsonsunset/jsg-logger 1.0.8 → 1.0.9

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.
@@ -4,7 +4,7 @@
4
4
  * Implements smart level resolution and file override system
5
5
  */
6
6
 
7
- import defaultConfig from './default-config.json';
7
+ import defaultConfig from './default-config.json' with { type: 'json' };
8
8
  import {COMPONENT_SCHEME, LEVEL_SCHEME} from './component-schemes.js';
9
9
 
10
10
  export class ConfigManager {
package/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  import pino from 'pino';
7
7
  import {configManager} from './config/config-manager.js';
8
8
  import {COMPONENT_SCHEME} from './config/component-schemes.js';
9
- import defaultConfig from './config/default-config.json';
9
+ import defaultConfig from './config/default-config.json' with { type: 'json' };
10
10
  import {getEnvironment, isBrowser, isCLI} from './utils/environment-detector.js';
11
11
  import {createBrowserFormatter} from './formatters/browser-formatter.js';
12
12
  import {createCLIFormatter} from './formatters/cli-formatter.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crimsonsunset/jsg-logger",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "description": "JSG Logger - Multi-environment logger with smart detection, file-level overrides, and beautiful console formatting",
6
6
  "main": "index.js",