@rdrudra99/hardlog 0.1.1 → 0.1.2

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/env.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { RuntimeEnvironment } from './types';
1
+ import type { RuntimeEnvironment } from './types.js';
2
2
  /**
3
3
  * Safely detect if we're in a browser environment
4
4
  */
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { LoggerConfig } from './types';
1
+ import type { LoggerConfig } from './types.js';
2
2
  /**
3
3
  * Dev-only logger with beautiful, colorful output
4
4
  *
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { logger } from './logger';
1
+ import { logger } from './logger.js';
2
2
  /**
3
3
  * Dev-only logger with beautiful, colorful output
4
4
  *
package/dist/logger.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { LoggerConfig } from './types';
1
+ import type { LoggerConfig } from './types.js';
2
2
  /**
3
3
  * Logger class - handles all logging operations
4
4
  */
package/dist/logger.js CHANGED
@@ -1,4 +1,4 @@
1
- import { detectEnvironment, shouldLogByDefault } from './env';
1
+ import { detectEnvironment, shouldLogByDefault } from './env.js';
2
2
  /**
3
3
  * ANSI color codes for Node.js terminal
4
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdrudra99/hardlog",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Beautiful, colorful dev-only logging for Node.js and Browser with zero configuration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",