git-worktree-organize 1.0.13 → 1.1.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 +247 -26
- package/dist/cli.js +767 -110
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-worktree-organize",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Convert any git repo into the canonical bare-hub worktree layout",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,14 +10,15 @@
|
|
|
10
10
|
"dist/"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "
|
|
14
|
-
"prepublishOnly": "
|
|
15
|
-
"test": "
|
|
13
|
+
"build": "npx esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js",
|
|
14
|
+
"prepublishOnly": "npm run build",
|
|
15
|
+
"test": "vitest run",
|
|
16
16
|
"test:watch": "vitest",
|
|
17
|
+
"test:coverage": "vitest run --coverage",
|
|
17
18
|
"release": "op run -- npm publish"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
|
-
"@types/
|
|
21
|
+
"@types/node": "^20.0.0",
|
|
21
22
|
"typescript": "^5.0.0",
|
|
22
23
|
"vitest": "^2.0.0"
|
|
23
24
|
},
|