@tamagui/compiler-core 3.0.0-beta.1153.1 → 3.0.0-beta.1169.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/evaluate.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/compiler-core",
3
- "version": "3.0.0-beta.1153.1",
3
+ "version": "3.0.0-beta.1169.1",
4
4
  "description": "Shared parser-independent Tamagui compiler graph and element IR",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -40,7 +40,7 @@
40
40
  "yuku-analyzer": "0.6.1"
41
41
  },
42
42
  "devDependencies": {
43
- "@tamagui/build": "3.0.0-beta.1153.1",
43
+ "@tamagui/build": "3.0.0-beta.1169.1",
44
44
  "typescript": "~6.0.3"
45
45
  },
46
46
  "repository": {
package/src/evaluate.ts CHANGED
@@ -700,7 +700,7 @@ function mapBranchLeaves(
700
700
 
701
701
  /**
702
702
  * A template literal is a decision tree once every value it interpolates is:
703
- * `${active ? 'red10' : 'blue10'}` names the same two strings the bare ternary
703
+ * `${active ? 'red-10' : 'blue-10'}` names the same two strings the bare ternary
704
704
  * does, and the quasis around it are constants. Each interpolated tree
705
705
  * multiplies the leaves, so every step spends a level of the shared depth
706
706
  * budget and a wide template refuses instead of expanding.