@pixelspace/manifesto 2026.15.13 → 2026.15.15

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 +1 -1
  2. package/src/index.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelspace/manifesto",
3
- "version": "2026.15.13",
3
+ "version": "2026.15.15",
4
4
  "description": "Design and Product Manifesto — Formal notation. A constitution for biological and digital intelligences.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -206,7 +206,9 @@ export async function run() {
206
206
  const manifesto = colorGradient(wrapFormal(manifestoBlock));
207
207
  const body = manifesto + '\n\n' + ctaParts.join('\n\n');
208
208
 
209
- console.log(`\n${logo}\n\n${header}\n\n${sep}\n\n${body}\n\n${sep}\n`);
209
+ const footer = `${DIM} Pixelspace · pixelspace.com · @pixelspace on X${RESET}`;
210
+
211
+ console.log(`\n${logo}\n\n${header}\n\n${sep}\n\n${body}\n\n${sep}\n\n${footer}\n`);
210
212
  }
211
213
 
212
214
  export default run;