@pandacss/logger 0.3.2 → 0.5.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +22 -0
  2. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ export { default as colors } from 'kleur';
2
+
3
+ declare const createLogScope: (scope: string) => {
4
+ (subScope: string): string;
5
+ toString(): string;
6
+ };
7
+
8
+ declare const quote: (...str: string[]) => string;
9
+ declare const logger: {
10
+ level: "debug" | "info" | "warn" | "error" | "silent";
11
+ warn: (type: string, data: any) => void;
12
+ info: (type: string, data: any) => void;
13
+ debug: (type: string, data: any) => void;
14
+ error: (type: string, data: any) => void;
15
+ log: (data: string) => void;
16
+ time: {
17
+ info: (msg: string) => () => void;
18
+ debug: (msg: string) => () => void;
19
+ };
20
+ };
21
+
22
+ export { createLogScope, logger, quote };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/logger",
3
- "version": "0.3.2",
3
+ "version": "0.5.0",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",