@pandacss/node 0.0.0-dev-20230418111141 → 0.0.0-dev-20230418123438

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/index.js CHANGED
@@ -801,7 +801,7 @@ function analyzeTokens(ctx, options = {}) {
801
801
  const extractTimeByFilepath = /* @__PURE__ */ new Map();
802
802
  ctx.getFiles().map((file) => {
803
803
  const start2 = performance.now();
804
- const result = ctx.project.parseSourceFile(file, ctx.properties);
804
+ const result = ctx.project.parseSourceFile(file);
805
805
  const extractMs = performance.now() - start2;
806
806
  extractTimeByFilepath.set(file, extractMs);
807
807
  import_logger.logger.debug("analyze", `Extracted ${file} in ${extractMs}ms`);
@@ -2376,7 +2376,7 @@ function extractFile(ctx, file) {
2376
2376
  import_lil_fp2.Obj.bind(
2377
2377
  "result",
2378
2378
  (0, import_lil_fp2.tryCatch)(
2379
- ({ file: file2 }) => ctx.project.parseSourceFile(file2, ctx.properties),
2379
+ ({ file: file2 }) => ctx.project.parseSourceFile(file2),
2380
2380
  (error) => import_logger3.logger.error("file:parse", error)
2381
2381
  )
2382
2382
  ),
package/dist/index.mjs CHANGED
@@ -782,7 +782,7 @@ function analyzeTokens(ctx, options = {}) {
782
782
  const extractTimeByFilepath = /* @__PURE__ */ new Map();
783
783
  ctx.getFiles().map((file) => {
784
784
  const start2 = performance.now();
785
- const result = ctx.project.parseSourceFile(file, ctx.properties);
785
+ const result = ctx.project.parseSourceFile(file);
786
786
  const extractMs = performance.now() - start2;
787
787
  extractTimeByFilepath.set(file, extractMs);
788
788
  logger.debug("analyze", `Extracted ${file} in ${extractMs}ms`);
@@ -2366,7 +2366,7 @@ function extractFile(ctx, file) {
2366
2366
  Obj2.bind(
2367
2367
  "result",
2368
2368
  tryCatch(
2369
- ({ file: file2 }) => ctx.project.parseSourceFile(file2, ctx.properties),
2369
+ ({ file: file2 }) => ctx.project.parseSourceFile(file2),
2370
2370
  (error) => logger3.error("file:parse", error)
2371
2371
  )
2372
2372
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20230418111141",
3
+ "version": "0.0.0-dev-20230418123438",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,17 +33,17 @@
33
33
  "preferred-pm": "^3.0.3",
34
34
  "ts-morph": "18.0.0",
35
35
  "ts-pattern": "4.2.2",
36
- "@pandacss/config": "0.0.0-dev-20230418111141",
37
- "@pandacss/core": "0.0.0-dev-20230418111141",
38
- "@pandacss/error": "0.0.0-dev-20230418111141",
39
- "@pandacss/generator": "0.0.0-dev-20230418111141",
40
- "@pandacss/is-valid-prop": "0.0.0-dev-20230418111141",
41
- "@pandacss/logger": "0.0.0-dev-20230418111141",
42
- "@pandacss/parser": "0.0.0-dev-20230418111141",
43
- "@pandacss/extractor": "0.0.0-dev-20230418111141",
44
- "@pandacss/shared": "0.0.0-dev-20230418111141",
45
- "@pandacss/token-dictionary": "0.0.0-dev-20230418111141",
46
- "@pandacss/types": "0.0.0-dev-20230418111141"
36
+ "@pandacss/config": "0.0.0-dev-20230418123438",
37
+ "@pandacss/core": "0.0.0-dev-20230418123438",
38
+ "@pandacss/error": "0.0.0-dev-20230418123438",
39
+ "@pandacss/generator": "0.0.0-dev-20230418123438",
40
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230418123438",
41
+ "@pandacss/logger": "0.0.0-dev-20230418123438",
42
+ "@pandacss/parser": "0.0.0-dev-20230418123438",
43
+ "@pandacss/extractor": "0.0.0-dev-20230418123438",
44
+ "@pandacss/shared": "0.0.0-dev-20230418123438",
45
+ "@pandacss/token-dictionary": "0.0.0-dev-20230418123438",
46
+ "@pandacss/types": "0.0.0-dev-20230418123438"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/fs-extra": "11.0.1",
@@ -53,7 +53,7 @@
53
53
  "@types/pluralize": "0.0.29",
54
54
  "boxen": "^7.0.2",
55
55
  "gzip-size": "^7.0.0",
56
- "@pandacss/fixture": "0.0.0-dev-20230418111141"
56
+ "@pandacss/fixture": "0.0.0-dev-20230418123438"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",