@nemus-cli/nemus 0.2.6 → 0.2.7

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/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.7] - 2026-08-25
11
+
12
+ ### Changed
13
+
14
+ - Removed two **unused** runtime dependencies (`ink-select-input`, `ink-spinner`)
15
+ — they were only referenced in an ambient type-declaration file, never
16
+ imported or rendered. Trims the production dependency tree (322 → 314
17
+ packages), reducing supply-chain surface. No user-facing change.
18
+
10
19
  ## [0.2.6] - 2026-08-25
11
20
 
12
21
  ### Changed
@@ -162,7 +171,8 @@ Initial open-source release of **Nemus**.
162
171
  - Automatic retries with backoff on flaky network operations.
163
172
  - Optional shell integration (auto-cd on create + quick-navigate helper).
164
173
 
165
- [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.6...HEAD
174
+ [Unreleased]: https://github.com/me-public/nemus/compare/v0.2.7...HEAD
175
+ [0.2.7]: https://github.com/me-public/nemus/compare/v0.2.6...v0.2.7
166
176
  [0.2.6]: https://github.com/me-public/nemus/compare/v0.2.5...v0.2.6
167
177
  [0.2.5]: https://github.com/me-public/nemus/compare/v0.2.4...v0.2.5
168
178
  [0.2.4]: https://github.com/me-public/nemus/compare/v0.2.3...v0.2.4
package/README.md CHANGED
@@ -12,9 +12,14 @@
12
12
  <a href="https://github.com/me-public/nemus/actions/workflows/ci.yml"><img src="https://github.com/me-public/nemus/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
13
13
  <a href="https://www.npmjs.com/package/@nemus-cli/nemus"><img src="https://img.shields.io/npm/v/@nemus-cli/nemus.svg" alt="npm" /></a>
14
14
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License: MIT" /></a>
15
+ <a href="https://www.npmjs.com/package/@nemus-cli/nemus"><img src="https://img.shields.io/npm/dm/@nemus-cli/nemus.svg" alt="npm downloads" /></a>
15
16
  <img src="https://img.shields.io/badge/node-%3E%3D22-brightgreen.svg" alt="Node >= 22" />
16
17
  </p>
17
18
 
19
+ <p align="center">
20
+ 📦 <b><a href="https://www.npmjs.com/package/@nemus-cli/nemus">@nemus-cli/nemus</a></b> on npm &nbsp;—&nbsp; <code>npm install -g @nemus-cli/nemus</code>
21
+ </p>
22
+
18
23
  ---
19
24
 
20
25
  ## The name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nemus-cli/nemus",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Nemus — a CLI for managing multi-repository workspaces. Create, sync, and operate across dozens of repos with a single command, and wire them up to your favorite coding agent.",
5
5
  "keywords": [
6
6
  "workspace",
@@ -69,8 +69,6 @@
69
69
  "commander": "^15.0.0",
70
70
  "fuzzy": "^0.1.3",
71
71
  "ink": "^5.0.0",
72
- "ink-select-input": "^6.0.0",
73
- "ink-spinner": "^5.0.0",
74
72
  "inquirer": "^8.0.0",
75
73
  "inquirer-autocomplete-prompt": "^2.0.0",
76
74
  "markdown-table": "^3.0.3",
@@ -135,37 +135,4 @@ declare module 'ink' {
135
135
  export function measureElement(ref: { current: any }): { width: number; height: number };
136
136
  }
137
137
 
138
- declare module 'ink-select-input' {
139
- import { FC } from 'react';
140
138
 
141
- export interface Item<V> {
142
- key?: string;
143
- label: string;
144
- value: V;
145
- }
146
-
147
- export interface Props<V> {
148
- items?: Array<Item<V>>;
149
- isFocused?: boolean;
150
- initialIndex?: number;
151
- limit?: number;
152
- indicatorComponent?: FC<{ isSelected: boolean }>;
153
- itemComponent?: FC<{ isSelected: boolean; label: string }>;
154
- onSelect?: (item: Item<V>) => void;
155
- onHighlight?: (item: Item<V>) => void;
156
- }
157
-
158
- function SelectInput<V>(props: Props<V>): JSX.Element;
159
- export default SelectInput;
160
- }
161
-
162
- declare module 'ink-spinner' {
163
- import { FC } from 'react';
164
-
165
- export interface Props {
166
- type?: string;
167
- }
168
-
169
- const Spinner: FC<Props>;
170
- export default Spinner;
171
- }