arashi 1.19.0 → 1.19.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 +2 -2
- package/package.json +27 -26
package/README.md
CHANGED
|
@@ -103,8 +103,8 @@ Invoke-WebRequest -Uri "https://github.com/corwinm/arashi/releases/latest/downlo
|
|
|
103
103
|
You can also build from source for local development:
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
pnpm install
|
|
107
|
+
pnpm run build
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
## Command Surface
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arashi",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.1",
|
|
4
4
|
"description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -48,53 +48,54 @@
|
|
|
48
48
|
],
|
|
49
49
|
"type": "module",
|
|
50
50
|
"scripts": {
|
|
51
|
-
"dev": "
|
|
51
|
+
"dev": "node src/index.ts",
|
|
52
52
|
"build": "bun build src/index.ts --compile --minify --outfile bin/arashi.bin",
|
|
53
53
|
"build:debug": "bun build src/index.ts --compile --sourcemap --outfile bin/arashi.bin",
|
|
54
|
-
"build:all": "
|
|
54
|
+
"build:all": "pnpm run build:mac && pnpm run build:linux && pnpm run build:windows",
|
|
55
55
|
"build:mac": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile bin/arashi-macos-arm64",
|
|
56
56
|
"build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile bin/arashi-linux-x64",
|
|
57
57
|
"build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile bin/arashi-windows-x64.exe",
|
|
58
|
-
"test": "
|
|
58
|
+
"test": "node scripts/test/run-tests.ts",
|
|
59
59
|
"typecheck": "tsc --noEmit",
|
|
60
60
|
"lint": "oxlint -D no-explicit-any .",
|
|
61
61
|
"lint:fix": "oxlint --fix -D no-explicit-any .",
|
|
62
62
|
"lint:ci": "oxlint --format github -D no-explicit-any .",
|
|
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
|
-
"schema:publish": "
|
|
65
|
-
"schema:check": "
|
|
66
|
-
"contract:generate": "
|
|
67
|
-
"contract:check": "
|
|
64
|
+
"schema:publish": "pnpm run schema:generate && oxfmt --config .oxfmtrc.json --write schema/config.schema.json",
|
|
65
|
+
"schema:check": "pnpm run schema:publish && git diff --exit-code -- schema/config.schema.json",
|
|
66
|
+
"contract:generate": "node scripts/contracts/cli-commands.ts",
|
|
67
|
+
"contract:check": "node scripts/contracts/cli-commands.ts --check",
|
|
68
68
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
69
69
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
70
|
-
"quality:changed": "
|
|
71
|
-
"prepublishOnly": "
|
|
70
|
+
"quality:changed": "node scripts/quality/changed-files-quality.ts",
|
|
71
|
+
"prepublishOnly": "pnpm run schema:publish",
|
|
72
72
|
"prepare": "husky"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@inquirer/prompts": "
|
|
76
|
-
"@semantic-release/changelog": "
|
|
77
|
-
"@semantic-release/exec": "
|
|
78
|
-
"@semantic-release/git": "
|
|
79
|
-
"@types/
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"ora": "^8.1.1",
|
|
75
|
+
"@inquirer/prompts": "7.10.1",
|
|
76
|
+
"@semantic-release/changelog": "6.0.3",
|
|
77
|
+
"@semantic-release/exec": "7.1.0",
|
|
78
|
+
"@semantic-release/git": "10.0.1",
|
|
79
|
+
"@types/node": "25.2.0",
|
|
80
|
+
"chalk": "5.6.2",
|
|
81
|
+
"commander": "12.1.0",
|
|
82
|
+
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
83
|
+
"husky": "9.1.7",
|
|
84
|
+
"js-yaml": "4.1.1",
|
|
85
|
+
"lint-staged": "16.2.7",
|
|
86
|
+
"ora": "8.2.0",
|
|
88
87
|
"oxfmt": "0.28.0",
|
|
89
88
|
"oxlint": "1.43.0",
|
|
90
|
-
"semantic-release": "
|
|
89
|
+
"semantic-release": "25.0.6",
|
|
91
90
|
"ts-json-schema-generator": "2.4.0",
|
|
92
|
-
"typescript": "
|
|
91
|
+
"typescript": "5.9.3",
|
|
92
|
+
"vitest": "3.2.4"
|
|
93
93
|
},
|
|
94
94
|
"lint-staged": {
|
|
95
95
|
"*.{ts,tsx,js,mjs,cjs,json,md,yml,yaml}": "oxfmt --config .oxfmtrc.json --write"
|
|
96
96
|
},
|
|
97
97
|
"engines": {
|
|
98
98
|
"node": ">=18.0.0"
|
|
99
|
-
}
|
|
99
|
+
},
|
|
100
|
+
"packageManager": "pnpm@10.15.1"
|
|
100
101
|
}
|