git-stint 0.5.0 → 0.5.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/dist/install-hooks.js +6 -0
- package/package.json +2 -2
package/dist/install-hooks.js
CHANGED
|
@@ -126,6 +126,12 @@ The name becomes the branch (\`stint/<name>\`) and the PR title context.
|
|
|
126
126
|
- Directories listed under \`shared_dirs\` in \`.stint.json\` are symlinked into
|
|
127
127
|
worktrees pointing to the main repo's real directories. They must never be
|
|
128
128
|
staged or committed. The hooks auto-add them to the worktree's \`.gitignore\`.
|
|
129
|
+
|
|
130
|
+
## Runtime
|
|
131
|
+
|
|
132
|
+
- Run tests and services from the worktree (your CWD), not the main repo. If
|
|
133
|
+
you spot paths or dependencies resolving back to main, warn the user.
|
|
134
|
+
- Use a non-default port to avoid collisions with other sessions.
|
|
129
135
|
`;
|
|
130
136
|
function scaffoldConfig(repoRoot) {
|
|
131
137
|
const configPath = join(repoRoot, ".stint.json");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-stint",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Session-scoped change tracking for AI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "^5.7.0",
|
|
54
|
-
"@types/node": "^
|
|
54
|
+
"@types/node": "^25.3.5"
|
|
55
55
|
}
|
|
56
56
|
}
|