@todos-dev/cli 0.1.0 → 0.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/dist/index.js +1 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -1292,7 +1292,7 @@ async function executeStep(step, serverUrl, token, tunnel) {
|
|
|
1292
1292
|
try {
|
|
1293
1293
|
await runGit(["add", "-A"], cwd);
|
|
1294
1294
|
await pruneIgnoredFromIndex(cwd);
|
|
1295
|
-
await runGit(["commit", "--allow-empty", "-m", `checkpoint ${stepId}`], cwd);
|
|
1295
|
+
await runGit(["-c", "user.email=noreply@todos.dev", "-c", "user.name=Todos", "commit", "--allow-empty", "-m", `checkpoint ${stepId}`], cwd);
|
|
1296
1296
|
commitSha = await runGit(["rev-parse", "HEAD"], cwd);
|
|
1297
1297
|
} catch (err) {
|
|
1298
1298
|
console.warn(`[step] ${stepId} checkpoint commit failed:`, err.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todos-dev/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"bin": {
|
|
5
5
|
"tds": "dist/index.js"
|
|
6
6
|
},
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"@tds/types": "0.1.0"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@todos-dev/cli-darwin-arm64": "0.1.
|
|
31
|
-
"@todos-dev/cli-darwin-x64": "0.1.
|
|
32
|
-
"@todos-dev/cli-linux-x64": "0.1.
|
|
33
|
-
"@todos-dev/cli-linux-arm64": "0.1.
|
|
34
|
-
"@todos-dev/cli-win32-x64": "0.1.
|
|
35
|
-
"@todos-dev/cli-win32-arm64": "0.1.
|
|
30
|
+
"@todos-dev/cli-darwin-arm64": "0.1.1",
|
|
31
|
+
"@todos-dev/cli-darwin-x64": "0.1.1",
|
|
32
|
+
"@todos-dev/cli-linux-x64": "0.1.1",
|
|
33
|
+
"@todos-dev/cli-linux-arm64": "0.1.1",
|
|
34
|
+
"@todos-dev/cli-win32-x64": "0.1.1",
|
|
35
|
+
"@todos-dev/cli-win32-arm64": "0.1.1"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "tsx watch src/index.ts",
|