dev-prune-darwin-arm64 1.18.0 → 1.19.0

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 (3) hide show
  1. package/README.md +20 -14
  2. package/bin/dev-prune +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -132,17 +132,23 @@ problem.
132
132
  ### From a package manager
133
133
 
134
134
  ```bash
135
- npm install -g dev-prune # or: npx dev-prune status
136
- bun add -g dev-prune # same package, through bun
137
- pnpm add -g dev-prune
138
- yarn global add dev-prune # Yarn 1.x
139
- uv tool install dev-prune # or: uvx dev-prune status
140
- pipx install dev-prune
141
- pip install dev-prune
142
- cargo binstall dev-prune # fetches the prebuilt release archive
143
- cargo install dev-prune # builds from source, needs Rust 1.88+
135
+ npm install -g dev-prune@latest # or: npx dev-prune status
136
+ bun add -g dev-prune@latest # same package, through bun
137
+ pnpm add -g dev-prune@latest
138
+ yarn global add dev-prune@latest # Yarn 1.x
139
+ uv tool install dev-prune@latest # or: uvx dev-prune status
140
+ pipx install --force dev-prune
141
+ pip install --upgrade dev-prune
142
+ cargo binstall dev-prune # fetches the prebuilt release archive
143
+ cargo install dev-prune # builds from source, needs Rust 1.88+
144
144
  ```
145
145
 
146
+ Each command installs the latest version *and* updates an existing copy — the same
147
+ line works for both. That is what the `@latest`, `--force` and `--upgrade` spellings
148
+ are for: the bare forms report "already installed" and change nothing, which looks
149
+ like an update and isn't. (`cargo install` rebuilds on its own whenever a newer
150
+ version exists.)
151
+
146
152
  The [npm](https://www.npmjs.com/package/dev-prune) and
147
153
  [PyPI](https://pypi.org/project/dev-prune/) packages **contain the binary** — there is no
148
154
  download step at install time, so they work under `npm ci --ignore-scripts`, behind a
@@ -190,8 +196,8 @@ brew install https://raw.githubusercontent.com/Life-Experimentalist/dev-prune/ma
190
196
  scoop install https://raw.githubusercontent.com/Life-Experimentalist/dev-prune/main/packaging/scoop/dev-prune.json
191
197
  ```
192
198
 
193
- WinGet is [submitted and in review](https://github.com/microsoft/winget-pkgs/pull/422809);
194
- `winget install VKrishna04.dev-prune` starts resolving when that pull request merges.
199
+ dev-prune is not in WinGet yet — `winget install VKrishna04.dev-prune` does not
200
+ resolve. On Windows, use Scoop or the install script instead.
195
201
 
196
202
  The two Python entry points differ in where they land. `pip install` follows whichever
197
203
  environment is active, so inside a virtualenv `devp` lives in that venv's `Scripts`/`bin`
@@ -325,8 +331,8 @@ so they are worth copying rather than typing.
325
331
  | [Open VSX](https://open-vsx.org/extension/VKrishna04/dev-prune) | **`VKrishna04.dev-prune`** | The same extension, for VSCodium, Cursor, Windsurf, Positron and Kiro. |
326
332
  | [SchemaStore](https://www.schemastore.org/) | **`.devprune.json`** | The config schema, by filename. No extension and no `$schema` key needed. |
327
333
 
328
- [WinGet](https://github.com/microsoft/winget-pkgs/pull/422809) is submitted and in
329
- review. It is not in the table because it does not resolve yet.
334
+ WinGet is not in the table because dev-prune is not in `winget-pkgs` yet, so
335
+ `winget install VKrishna04.dev-prune` does not resolve.
330
336
 
331
337
  Two of those rows are not installs of dev-prune at all. SchemaStore is why JetBrains
332
338
  IDEs, Visual Studio, Neovim and Zed validate `.devprune.json` with nothing installed —
@@ -653,7 +659,7 @@ process that leaves a dirty working tree is a surprise.
653
659
  | `devp doctor [PATH]` | `--fix` | Diagnoses the installation, or one repository — ending with the single reason a pass would or would not touch it. `--fix` repairs what the checks found; it never performs a first-time install |
654
660
  | `devp config [ACTION]` | `get`, `set`, `show`, `wizard`, `project`, `daemon`, `hook`, `icon` | Global settings, per-repository `.devprune.json`, scheduler, Git hooks, file manager icons |
655
661
  | `devp setup` | `--status` | Installs any missing integration; `--status` only reports |
656
- | `devp update` | `--offline`, `--install` | Prints the installed version, checks GitHub for a newer release, shows the upgrade command for your install channel; `--install` runs that upgrade through the channel that owns this copy |
662
+ | `devp update` | `--offline`, `-y`, `--install` | Prints the installed version, checks GitHub for a newer release, shows the upgrade command for your install channel, then asks `[y/N]` before installing when there is one; `-y` answers yes, `--install` skips the report and installs straight away |
657
663
  | `devp skill` | `--agent <editor>` | Exports `SKILL.md` and prints AI agent onboarding prompts; `--agent` writes per-repository rules for 16 editors — Cursor, Windsurf, Antigravity, Cline, Roo, Kilo Code, Continue, Amazon Q, Kiro, Trae, Junie, Gemini CLI, Zed, Copilot, Aider or `AGENTS.md` |
658
664
  | `devp man` | `--dir <dir>` | The manual as man pages, generated from the same argument definitions `--help` prints; alone it emits `devp(1)` to stdout, `--dir` writes the full set |
659
665
  | `devp uninstall` | `--deep` | Removes the scheduler, hooks, both binaries and every other installed copy it can find on the machine; `--deep` also clears configuration |
package/bin/dev-prune CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-prune-darwin-arm64",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "Prebuilt dev-prune binary for darwin arm64. Installed automatically by the 'dev-prune' package; not meant to be depended on directly.",
5
5
  "os": ["darwin"],
6
6
  "cpu": ["arm64"],