@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/components.manifest.json +3 -3
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/styles.css +0 -3
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
- package/scripts/generate-edges-docs.js +4 -2
package/dist/styles.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.22.
|
|
3
|
-
"generatedAt": "2025-11-
|
|
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
|
@@ -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
|
-
|
|
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)"
|