@pandacss/parser 0.26.2 → 0.27.1

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
@@ -230,7 +230,6 @@ function createParser(context) {
230
230
  if (file.isEmpty() && !jsx.isEnabled) {
231
231
  return parserResult;
232
232
  }
233
- const measure = import_logger.logger.time.debug(`Extract AST from ${filePath}`);
234
233
  const extractResultByName = (0, import_extractor.extract)({
235
234
  ast: sourceFile,
236
235
  components: jsx.isEnabled ? {
@@ -270,7 +269,6 @@ function createParser(context) {
270
269
  },
271
270
  flags: { skipTraverseFiles: true }
272
271
  });
273
- measure();
274
272
  extractResultByName.forEach((result, alias) => {
275
273
  const name = file.getName(file.normalizeFnName(alias));
276
274
  import_logger.logger.debug(`ast:${name}`, name !== alias ? { kind: result.kind, alias } : { kind: result.kind });
package/dist/index.mjs CHANGED
@@ -196,7 +196,6 @@ function createParser(context) {
196
196
  if (file.isEmpty() && !jsx.isEnabled) {
197
197
  return parserResult;
198
198
  }
199
- const measure = logger.time.debug(`Extract AST from ${filePath}`);
200
199
  const extractResultByName = extract({
201
200
  ast: sourceFile,
202
201
  components: jsx.isEnabled ? {
@@ -236,7 +235,6 @@ function createParser(context) {
236
235
  },
237
236
  flags: { skipTraverseFiles: true }
238
237
  });
239
- measure();
240
238
  extractResultByName.forEach((result, alias) => {
241
239
  const name = file.getName(file.normalizeFnName(alias));
242
240
  logger.debug(`ast:${name}`, name !== alias ? { kind: result.kind, alias } : { kind: result.kind });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/parser",
3
- "version": "0.26.2",
3
+ "version": "0.27.1",
4
4
  "description": "The static parser for panda css",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -32,17 +32,17 @@
32
32
  "magic-string": "0.30.5",
33
33
  "ts-morph": "19.0.0",
34
34
  "ts-pattern": "5.0.5",
35
- "@pandacss/config": "^0.26.2",
36
- "@pandacss/core": "^0.26.2",
37
- "@pandacss/shared": "0.26.2",
38
- "@pandacss/extractor": "0.26.2",
39
- "@pandacss/logger": "0.26.2",
40
- "@pandacss/types": "0.26.2"
35
+ "@pandacss/config": "^0.27.1",
36
+ "@pandacss/core": "^0.27.1",
37
+ "@pandacss/extractor": "0.27.1",
38
+ "@pandacss/logger": "0.27.1",
39
+ "@pandacss/shared": "0.27.1",
40
+ "@pandacss/types": "0.27.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@vue/compiler-core": "3.3.4",
44
44
  "hookable": "5.5.3",
45
- "@pandacss/generator": "0.26.2"
45
+ "@pandacss/generator": "0.27.1"
46
46
  },
47
47
  "files": [
48
48
  "dist"