arashi 1.31.0 → 1.32.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
@@ -8,6 +8,8 @@ Arashi is a Git worktree manager for meta-repositories.
8
8
 
9
9
  It keeps related repositories aligned while you work on a feature branch across a shared workspace.
10
10
 
11
+ Arashi makes a polyrepo work like a monorepo during development, while every repository keeps its own history, CI, and pull requests.
12
+
11
13
  [Documentation](https://arashi.haphazard.dev)
12
14
 
13
15
  ## Installation
@@ -338,6 +340,12 @@ alias arashi-delete='arashi remove -f'
338
340
 
339
341
  ## Configuration Schema
340
342
 
343
+ ### Configured worktree files
344
+
345
+ Configured repositories can copy isolated files or create native symlinks for intentionally shared state when coordinated worktrees are created. See [Worktree file materialization](docs/configuration.md#worktree-file-materialization) for direct `copy`/`symlink` arrays, Git-primary sourcing, lifecycle order, safety rules, dry-run previews, and doctor diagnostics.
346
+
347
+ ## Configuration Schema
348
+
341
349
  Arashi publishes a JSON Schema for `.arashi/config.json` so editors can validate and autocomplete your config.
342
350
 
343
351
  - Stable URL: `https://unpkg.com/arashi/schema/config.schema.json`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arashi",
3
- "version": "1.31.0",
3
+ "version": "1.32.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",
@@ -212,6 +212,13 @@
212
212
  "additionalProperties": false,
213
213
  "description": "Configuration for a single repository",
214
214
  "properties": {
215
+ "copy": {
216
+ "description": "Repository-relative paths copied into new worktrees in declaration order",
217
+ "items": {
218
+ "type": "string"
219
+ },
220
+ "type": "array"
221
+ },
215
222
  "gitUrl": {
216
223
  "description": "Canonical git URL for cloning the repository",
217
224
  "type": "string"
@@ -230,6 +237,13 @@
230
237
  "path": {
231
238
  "description": "Path to the repository (relative or absolute)",
232
239
  "type": "string"
240
+ },
241
+ "symlink": {
242
+ "description": "Repository-relative paths symlinked into new worktrees in declaration order",
243
+ "items": {
244
+ "type": "string"
245
+ },
246
+ "type": "array"
233
247
  }
234
248
  },
235
249
  "required": ["path"],