@pandacss/node 0.0.0-dev-20230613153802 → 0.0.0-dev-20230613163214

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.ts +4 -4
  2. package/package.json +13 -13
package/dist/index.d.ts CHANGED
@@ -47,7 +47,7 @@ declare function analyzeTokens(ctx: PandaContext, options?: Options): {
47
47
  classify: number;
48
48
  };
49
49
  fileSizes: {
50
- lineCount: any;
50
+ lineCount: number;
51
51
  normal: string | number | any[] | {
52
52
  value: any;
53
53
  symbol: any;
@@ -199,9 +199,9 @@ declare class Builder {
199
199
  getContextOrThrow(): PandaContext;
200
200
  get fileModifiedMap(): Map<string, number>;
201
201
  get fileCssMap(): Map<string, string>;
202
- extractFile(ctx: PandaContext, file: string): Promise<any>;
202
+ extractFile(ctx: PandaContext, file: string): Promise<string | undefined>;
203
203
  extract(): Promise<void>;
204
- toString(): any;
204
+ toString(): string;
205
205
  isValidRoot(root: Root): boolean;
206
206
  write(root: Root): void;
207
207
  registerDependency(fn: (dep: Message) => void): void;
@@ -221,7 +221,7 @@ declare function debugFiles(ctx: PandaContext, options: {
221
221
 
222
222
  declare function execCommand(cmd: string, cwd: string): Promise<void>;
223
223
 
224
- declare function extractFile(ctx: PandaContext, file: string): any;
224
+ declare function extractFile(ctx: PandaContext, file: string): string | undefined;
225
225
  declare function emitArtifacts(ctx: PandaContext): Promise<string>;
226
226
  declare function emitAndExtract(ctx: PandaContext): Promise<string>;
227
227
  declare function extractCss(ctx: PandaContext): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20230613153802",
3
+ "version": "0.0.0-dev-20230613163214",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -32,17 +32,17 @@
32
32
  "preferred-pm": "^3.0.3",
33
33
  "ts-morph": "18.0.0",
34
34
  "ts-pattern": "4.3.0",
35
- "@pandacss/config": "0.0.0-dev-20230613153802",
36
- "@pandacss/core": "0.0.0-dev-20230613153802",
37
- "@pandacss/error": "0.0.0-dev-20230613153802",
38
- "@pandacss/extractor": "0.0.0-dev-20230613153802",
39
- "@pandacss/generator": "0.0.0-dev-20230613153802",
40
- "@pandacss/is-valid-prop": "0.0.0-dev-20230613153802",
41
- "@pandacss/logger": "0.0.0-dev-20230613153802",
42
- "@pandacss/parser": "0.0.0-dev-20230613153802",
43
- "@pandacss/shared": "0.0.0-dev-20230613153802",
44
- "@pandacss/token-dictionary": "0.0.0-dev-20230613153802",
45
- "@pandacss/types": "0.0.0-dev-20230613153802"
35
+ "@pandacss/config": "0.0.0-dev-20230613163214",
36
+ "@pandacss/core": "0.0.0-dev-20230613163214",
37
+ "@pandacss/error": "0.0.0-dev-20230613163214",
38
+ "@pandacss/extractor": "0.0.0-dev-20230613163214",
39
+ "@pandacss/generator": "0.0.0-dev-20230613163214",
40
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230613163214",
41
+ "@pandacss/logger": "0.0.0-dev-20230613163214",
42
+ "@pandacss/parser": "0.0.0-dev-20230613163214",
43
+ "@pandacss/shared": "0.0.0-dev-20230613163214",
44
+ "@pandacss/token-dictionary": "0.0.0-dev-20230613163214",
45
+ "@pandacss/types": "0.0.0-dev-20230613163214"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/fs-extra": "11.0.1",
@@ -51,7 +51,7 @@
51
51
  "@types/lodash.merge": "4.6.7",
52
52
  "@types/pluralize": "0.0.29",
53
53
  "boxen": "^7.1.0",
54
- "@pandacss/fixture": "0.0.0-dev-20230613153802"
54
+ "@pandacss/fixture": "0.0.0-dev-20230613163214"
55
55
  },
56
56
  "scripts": {
57
57
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",