@shivanshshrivas/gwit 0.2.0 → 0.2.1
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 +9 -3
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
# gwit
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# gwit
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@shivanshshrivas/gwit)
|
|
4
|
+
[](https://www.npmjs.com/package/@shivanshshrivas/gwit)
|
|
5
|
+
[](https://github.com/shivanshshrivas/gwit/actions/workflows/ci.yml)
|
|
6
|
+
[](https://nodejs.org/)
|
|
7
|
+
[](./LICENSE)
|
|
8
|
+
|
|
9
|
+
Fully isolated git worktrees, in one command.
|
|
4
10
|
|
|
5
11
|
gwit wraps `git worktree` to turn a fresh checkout into a fully working environment - gitignored files copied, unique port assigned, per-worktree env vars injected, and setup scripts run automatically.
|
|
6
12
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shivanshshrivas/gwit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Fully isolated git worktrees for parallel development",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"git",
|
|
7
|
+
"git-worktree",
|
|
8
|
+
"worktree",
|
|
9
|
+
"cli",
|
|
10
|
+
"developer-tools",
|
|
11
|
+
"typescript",
|
|
12
|
+
"parallel-development",
|
|
13
|
+
"monorepo",
|
|
14
|
+
"automation",
|
|
15
|
+
"ai-agents"
|
|
16
|
+
],
|
|
5
17
|
"license": "MIT",
|
|
6
18
|
"engines": {
|
|
7
19
|
"node": ">=20.0.0"
|
|
8
20
|
},
|
|
9
21
|
"bin": {
|
|
10
|
-
"gwit": "
|
|
22
|
+
"gwit": "dist/index.cjs"
|
|
11
23
|
},
|
|
12
24
|
"files": [
|
|
13
25
|
"dist"
|