@tomkapa/tayto 0.8.1 → 0.8.2

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
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@tomkapa/tayto)](https://www.npmjs.com/package/@tomkapa/tayto)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
7
- [![Node.js](https://img.shields.io/badge/node-%3E%3D25-brightgreen)](https://nodejs.org)
7
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D22-brightgreen)](https://nodejs.org)
8
8
 
9
9
  **Stop losing tasks between AI sessions. Stop drowning in Jira fields you don't need.**
10
10
 
@@ -38,7 +38,7 @@ Tayto solves exactly this: a **CLI for agents** and a **TUI for humans**, sharin
38
38
  npm install -g @tomkapa/tayto
39
39
  ```
40
40
 
41
- **Requires:** Node.js >= 25
41
+ **Requires:** Node.js >= 22
42
42
 
43
43
  ---
44
44
 
@@ -92,7 +92,7 @@ var Logger = class {
92
92
  var logger = new Logger();
93
93
 
94
94
  // src/version.ts
95
- var APP_VERSION = true ? "0.8.1" : "0.0.0-dev";
95
+ var APP_VERSION = true ? "0.8.2" : "0.0.0-dev";
96
96
 
97
97
  // src/types/enums.ts
98
98
  var TaskStatus = {
@@ -252,4 +252,4 @@ export {
252
252
  isNewerVersion,
253
253
  APP_VERSION
254
254
  };
255
- //# sourceMappingURL=chunk-6ZNCVCAS.js.map
255
+ //# sourceMappingURL=chunk-TJH7MKMN.js.map
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  logger,
19
19
  midpoint,
20
20
  ok
21
- } from "./chunk-6ZNCVCAS.js";
21
+ } from "./chunk-TJH7MKMN.js";
22
22
 
23
23
  // src/config/index.ts
24
24
  import { mkdirSync } from "fs";
@@ -2595,7 +2595,7 @@ function buildCLI(container) {
2595
2595
  registerDepGraph(dep, container);
2596
2596
  registerUpgrade(program, container);
2597
2597
  program.command("tui").description("Launch interactive terminal UI").option("-p, --project <project>", "Start with specific project").action(async (opts) => {
2598
- const { launchTUI } = await import("./tui-APMSKU4E.js");
2598
+ const { launchTUI } = await import("./tui-6TXG3VUA.js");
2599
2599
  await launchTUI(container, opts.project);
2600
2600
  });
2601
2601
  return program;
@@ -2777,7 +2777,7 @@ async function main() {
2777
2777
  updateCheck = await checkForUpdateQuietly(container, APP_VERSION);
2778
2778
  }
2779
2779
  if (args.length === 0) {
2780
- const { launchTUI } = await import("./tui-APMSKU4E.js");
2780
+ const { launchTUI } = await import("./tui-6TXG3VUA.js");
2781
2781
  await launchTUI(
2782
2782
  container,
2783
2783
  void 0,
@@ -11,7 +11,7 @@ import {
11
11
  isNewerVersion,
12
12
  isTerminalStatus,
13
13
  logger
14
- } from "./chunk-6ZNCVCAS.js";
14
+ } from "./chunk-TJH7MKMN.js";
15
15
 
16
16
  // src/tui/index.tsx
17
17
  import { render } from "ink";
@@ -3757,4 +3757,4 @@ async function launchTUI(container, initialProject, latestVersion) {
3757
3757
  export {
3758
3758
  launchTUI
3759
3759
  };
3760
- //# sourceMappingURL=tui-APMSKU4E.js.map
3760
+ //# sourceMappingURL=tui-6TXG3VUA.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomkapa/tayto",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "CLI tool for task management - for solo devs and AI agents",
5
5
  "type": "module",
6
6
  "bin": {