@hyperdrive.bot/gut 0.2.0 → 0.2.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
@@ -8,8 +8,10 @@ Git Unified Tooling - Enhanced git with workspace intelligence for entity-based
8
8
  [![Downloads/week](https://img.shields.io/npm/dw/@devsquad/gut.svg)](https://npmjs.org/package/@devsquad/gut)
9
9
 
10
10
  <!-- toc -->
11
- * [Usage](#usage)
12
11
  * [Untracked Entities](#untracked-entities)
12
+ * [Commit all changes in focused entities only (default — unchanged)](#commit-all-changes-in-focused-entities-only-default--unchanged)
13
+ * [Also commit in super-repo root + any unregistered nested repos](#also-commit-in-super-repo-root--any-unregistered-nested-repos)
14
+ * [Usage](#usage)
13
15
  * [Commands](#commands)
14
16
  <!-- tocstop -->
15
17
 
@@ -46,7 +48,7 @@ $ npm install -g @hyperdrive.bot/gut
46
48
  $ gut COMMAND
47
49
  running command...
48
50
  $ gut (--version)
49
- @hyperdrive.bot/gut/0.1.16 linux-x64 node-v22.22.2
51
+ @hyperdrive.bot/gut/0.2.2-alpha.0 linux-x64 node-v22.22.2
50
52
  $ gut --help [COMMAND]
51
53
  USAGE
52
54
  $ gut COMMAND
@@ -323,12 +325,14 @@ Commit changes in focused repositories
323
325
 
324
326
  ```
325
327
  USAGE
326
- $ gut commit [-a] [--amend] [-m <value>]
328
+ $ gut commit [-a] [--amend] [-u] [-m <value>]
327
329
 
328
330
  FLAGS
329
- -a, --all Stage all changes before committing
330
- -m, --message=<value> Commit message
331
- --amend Amend the previous commit
331
+ -a, --all Stage all changes before committing
332
+ -m, --message=<value> Commit message
333
+ -u, --include-untracked Also commit in discovered .git repos not registered as entities (e.g. super-repo root, nested
334
+ repos). Fails closed on main/master/live/prod.
335
+ --amend Amend the previous commit
332
336
 
333
337
  DESCRIPTION
334
338
  Commit changes in focused repositories
@@ -338,6 +342,8 @@ EXAMPLES
338
342
 
339
343
  $ gut commit --message "Add feature"
340
344
 
345
+ $ gut commit -a -u -m "Ship WIP across workspace"
346
+
341
347
  $ gut commit
342
348
  ```
343
349
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperdrive.bot/gut",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Git Unified Tooling - Enhanced git with workspace intelligence for entity-based organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@hyperdrive.bot/cli-auth": "^1.1.1",
41
- "@hyperdrive.bot/plugin-telemetry": "file:../telemetry-plugin",
41
+ "@hyperdrive.bot/plugin-telemetry": "^0.1.2",
42
42
  "@oclif/core": "^4.5.2",
43
43
  "@oclif/plugin-help": "^6.2.32",
44
44
  "axios": "^1.7.1",
@@ -93,4 +93,4 @@
93
93
  "access": "public",
94
94
  "registry": "https://registry.npmjs.org/"
95
95
  }
96
- }
96
+ }