projectinator 0.1.3 → 0.1.4

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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![npm](https://img.shields.io/npm/v/projectinator.svg?color=e0a72d&label=npm)](https://www.npmjs.com/package/projectinator)
8
8
  ![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)
9
9
  ![node](https://img.shields.io/badge/node-%E2%89%A520-brightgreen.svg)
10
- ![tests: 137 passing](https://img.shields.io/badge/tests-137%20passing-brightgreen.svg)
10
+ ![tests: 140 passing](https://img.shields.io/badge/tests-140%20passing-brightgreen.svg)
11
11
  ![TypeScript](https://img.shields.io/badge/TypeScript-strict-3178c6.svg)
12
12
  ![built on Pi](https://img.shields.io/badge/built%20on-Pi%20agent%20harness-e0a72d.svg)
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectinator",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Your AI build team in the terminal — hand it an app idea, a PM model plans a Scrum backlog, and the best model per role designs, codes, and tests it into working files. Bring your own API key.",
5
5
  "type": "module",
6
6
  "private": false,
package/src/tui/App.tsx CHANGED
@@ -4,6 +4,7 @@
4
4
  import React, { useEffect, useState } from "react";
5
5
  import { Box, Text, useApp, useInput } from "ink";
6
6
  import { Spinner, StatusMessage } from "@inkjs/ui";
7
+ import InkSpinner from "ink-spinner"; // a Text-based spinner, safe as an inline glyph inside <Text>
7
8
  import type { Provider } from "../types.js";
8
9
  import type { OrchestratorEvent } from "../orchestrator.js";
9
10
  import { C, BudgetBar, Panel, Chip, Menu as SelectInput, GroupedMenu, KeyHint, useTermRows, TextField as TextInput, type TaskView, type MenuGroup } from "./components.js";
@@ -1586,7 +1587,7 @@ export default function App(): React.ReactElement {
1586
1587
  return (
1587
1588
  <Box flexDirection="column">
1588
1589
  <Box>
1589
- <Text color="cyan"><Spinner type="dots" /></Text>
1590
+ <Text color="cyan"><InkSpinner type="dots" /></Text>
1590
1591
  <Text bold>{" "}Building</Text>
1591
1592
  <Text color={C.textSubtle}>{` ${running} running`}</Text>
1592
1593
  </Box>