@vlandoss/loggy 0.0.8-git-06df4ba.0 → 0.0.8-git-4147190.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/loggy",
3
- "version": "0.0.8-git-06df4ba.0",
3
+ "version": "0.0.8-git-4147190.0",
4
4
  "description": "Console wrapper to make logging fun again",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/packages/loggy#readme",
6
6
  "bugs": {
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/debug": "4.1.12",
42
- "@vlandoss/tsdown-config": "^0.0.2-git-06df4ba.0"
42
+ "@vlandoss/tsdown-config": "^0.0.2-git-4147190.0"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsdown",
package/src/const.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import util from "node:util";
2
- import type { FormatOptions, Formatters } from "./types";
2
+ import type { FormatOptions, Formatters } from "./types.ts";
3
3
 
4
4
  export const DEFAULT_FORMAT_OPTIONS: FormatOptions = {
5
5
  colors: true,
package/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./loggy";
2
- export * from "./types";
1
+ export * from "./loggy.ts";
2
+ export * from "./types.ts";
package/src/loggy.ts CHANGED
@@ -2,8 +2,8 @@ import util from "node:util";
2
2
  import { type ConsolaInstance, createConsola } from "consola";
3
3
  import { colors } from "consola/utils";
4
4
  import createDebug from "debug";
5
- import { DEFAULT_FORMAT_OPTIONS, DEFAULT_FORMATTERS } from "./const";
6
- import type { AnyLogger, CreateOptions, LogFnOptions, LoggerOptions } from "./types";
5
+ import { DEFAULT_FORMAT_OPTIONS, DEFAULT_FORMATTERS } from "./const.ts";
6
+ import type { AnyLogger, CreateOptions, LogFnOptions, LoggerOptions } from "./types.ts";
7
7
 
8
8
  function isLogFnOptions(arg: unknown): arg is LogFnOptions {
9
9
  try {