arashi 1.17.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.
package/README.md CHANGED
@@ -125,6 +125,7 @@ Arashi currently provides these commands:
125
125
  - `arashi shell init <bash|zsh|fish>`
126
126
  - `arashi shell install`
127
127
  - `arashi pull`
128
+ - `arashi push [--set-upstream] [--dry-run] [--only <repo>] [--json]`
128
129
  - `arashi sync`
129
130
  - `arashi setup [--only <repo>] [--verbose]`
130
131
 
@@ -321,6 +322,7 @@ Arashi also ships a dedicated `skills.sh` integration package for guided install
321
322
  - Setup command details: [`docs/commands/setup.md`](./docs/commands/setup.md)
322
323
  - Switch command details: [`docs/commands/switch.md`](./docs/commands/switch.md)
323
324
  - Remove command details: [`docs/commands/remove.md`](./docs/commands/remove.md)
325
+ - Push command details: [`docs/commands/push.md`](./docs/commands/push.md)
324
326
  - FZF integration: [`docs/FZF_COMPATIBILITY.md`](./docs/FZF_COMPATIBILITY.md)
325
327
 
326
328
  ## Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arashi",
3
- "version": "1.17.0",
3
+ "version": "1.19.0",
4
4
  "description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
5
5
  "keywords": [
6
6
  "cli",
@@ -63,6 +63,8 @@
63
63
  "schema:generate": "ts-json-schema-generator --tsconfig tsconfig.schema.json --path src/lib/config.ts --type Config --expose export --jsDoc extended --out schema/config.schema.json",
64
64
  "schema:publish": "bun run schema:generate && oxfmt --config .oxfmtrc.json --write schema/config.schema.json",
65
65
  "schema:check": "bun run schema:publish && git diff --exit-code -- schema/config.schema.json",
66
+ "contract:generate": "bun run scripts/contracts/cli-commands.ts",
67
+ "contract:check": "bun run scripts/contracts/cli-commands.ts --check",
66
68
  "format": "oxfmt --config .oxfmtrc.json --write .",
67
69
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
68
70
  "quality:changed": "bun run scripts/quality/changed-files-quality.ts",
@@ -133,6 +133,13 @@
133
133
  "description": "Canonical git URL for cloning the repository",
134
134
  "type": "string"
135
135
  },
136
+ "groups": {
137
+ "description": "Optional semantic groups this repository belongs to",
138
+ "items": {
139
+ "type": "string"
140
+ },
141
+ "type": "array"
142
+ },
136
143
  "path": {
137
144
  "description": "Path to the repository (relative or absolute)",
138
145
  "type": "string"