@texturehq/edges 1.22.0 → 1.22.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/styles.css CHANGED
@@ -1871,9 +1871,6 @@
1871
1871
  .min-h-\[300px\] {
1872
1872
  min-height: 300px;
1873
1873
  }
1874
- .min-h-\[320px\] {
1875
- min-height: 320px;
1876
- }
1877
1874
  .min-h-\[400px\] {
1878
1875
  min-height: 400px;
1879
1876
  }
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.22.0",
3
- "generatedAt": "2025-11-18T02:17:14.811Z",
2
+ "version": "1.22.1",
3
+ "generatedAt": "2025-11-18T14:22:45.188Z",
4
4
  "categories": {
5
5
  "hooks": {
6
6
  "description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@texturehq/edges",
3
- "version": "1.22.0",
3
+ "version": "1.22.1",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",
@@ -1041,10 +1041,12 @@ async function main() {
1041
1041
  // Merge all agent instruction fragments
1042
1042
  console.log("\nšŸ”€ Merging agent instruction fragments...");
1043
1043
  try {
1044
- execSync("ts-node scripts/merge-agent-instructions.ts", {
1044
+ const output = execSync("ts-node scripts/merge-agent-instructions.ts", {
1045
1045
  cwd: MONO_ROOT,
1046
- stdio: "inherit",
1046
+ encoding: "utf8",
1047
+ stdio: "pipe",
1047
1048
  });
1049
+ console.log(output);
1048
1050
  } catch (_err) {
1049
1051
  console.log(
1050
1052
  "āš ļø Note: Could not merge agent instructions (merge script may not be available yet)"