glab-setup-git-identity 0.6.0

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.
Files changed (66) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.github/workflows/release.yml +372 -0
  4. package/.husky/pre-commit +1 -0
  5. package/.jscpd.json +20 -0
  6. package/.prettierignore +7 -0
  7. package/.prettierrc +10 -0
  8. package/CHANGELOG.md +143 -0
  9. package/LICENSE +24 -0
  10. package/README.md +455 -0
  11. package/bunfig.toml +3 -0
  12. package/deno.json +7 -0
  13. package/docs/case-studies/issue-13/README.md +195 -0
  14. package/docs/case-studies/issue-13/hive-mind-issue-960.json +23 -0
  15. package/docs/case-studies/issue-13/hive-mind-pr-961-diff.txt +773 -0
  16. package/docs/case-studies/issue-13/hive-mind-pr-961.json +126 -0
  17. package/docs/case-studies/issue-21/README.md +384 -0
  18. package/docs/case-studies/issue-21/ci-logs/run-20803315337.txt +1188 -0
  19. package/docs/case-studies/issue-21/ci-logs/run-20885464993.txt +1310 -0
  20. package/docs/case-studies/issue-21/issue-111-data.txt +15 -0
  21. package/docs/case-studies/issue-21/issue-113-data.txt +15 -0
  22. package/docs/case-studies/issue-21/pr-112-data.json +109 -0
  23. package/docs/case-studies/issue-21/pr-112-diff.patch +1336 -0
  24. package/docs/case-studies/issue-21/pr-114-data.json +126 -0
  25. package/docs/case-studies/issue-21/pr-114-diff.patch +879 -0
  26. package/docs/case-studies/issue-3/README.md +338 -0
  27. package/docs/case-studies/issue-3/created-issues.md +32 -0
  28. package/docs/case-studies/issue-3/issue-data.json +29 -0
  29. package/docs/case-studies/issue-3/original-format-release-notes.mjs +212 -0
  30. package/docs/case-studies/issue-3/reference-pr-59-diff.txt +614 -0
  31. package/docs/case-studies/issue-3/reference-pr-59.json +109 -0
  32. package/docs/case-studies/issue-3/release-v0.1.0.json +9 -0
  33. package/docs/case-studies/issue-3/repositories-with-same-script.json +22 -0
  34. package/docs/case-studies/issue-3/research-notes.md +33 -0
  35. package/docs/case-studies/issue-7/BEST-PRACTICES-COMPARISON.md +334 -0
  36. package/docs/case-studies/issue-7/FORMATTER-COMPARISON.md +649 -0
  37. package/docs/case-studies/issue-7/current-repository-analysis.json +70 -0
  38. package/docs/case-studies/issue-7/effect-template-analysis.json +178 -0
  39. package/eslint.config.js +91 -0
  40. package/examples/basic-usage.js +64 -0
  41. package/experiments/test-changeset-scripts.mjs +303 -0
  42. package/experiments/test-failure-detection.mjs +143 -0
  43. package/experiments/test-format-major-changes.mjs +49 -0
  44. package/experiments/test-format-minor-changes.mjs +52 -0
  45. package/experiments/test-format-no-hash.mjs +43 -0
  46. package/experiments/test-format-patch-changes.mjs +46 -0
  47. package/package.json +80 -0
  48. package/scripts/changeset-version.mjs +75 -0
  49. package/scripts/check-changesets.mjs +67 -0
  50. package/scripts/check-version.mjs +129 -0
  51. package/scripts/create-github-release.mjs +93 -0
  52. package/scripts/create-manual-changeset.mjs +89 -0
  53. package/scripts/detect-code-changes.mjs +194 -0
  54. package/scripts/format-github-release.mjs +83 -0
  55. package/scripts/format-release-notes.mjs +219 -0
  56. package/scripts/instant-version-bump.mjs +172 -0
  57. package/scripts/js-paths.mjs +177 -0
  58. package/scripts/merge-changesets.mjs +263 -0
  59. package/scripts/publish-to-npm.mjs +302 -0
  60. package/scripts/setup-npm.mjs +37 -0
  61. package/scripts/validate-changeset.mjs +265 -0
  62. package/scripts/version-and-commit.mjs +284 -0
  63. package/src/cli.js +386 -0
  64. package/src/index.d.ts +255 -0
  65. package/src/index.js +563 -0
  66. package/tests/index.test.js +137 -0
@@ -0,0 +1,15 @@
1
+ title: JS release does not work
2
+ state: CLOSED
3
+ author: konard
4
+ labels: bug
5
+ comments: 0
6
+ assignees:
7
+ projects:
8
+ milestone:
9
+ number: 111
10
+ --
11
+ Full CI run log: https://github.com/link-assistant/agent/actions/runs/20803315337/job/59752415630
12
+
13
+ Make sure we update all other places with paths to support ./js folder for js.yml
14
+
15
+ Please download all logs and data related about the issue to this repository, make sure we compile that data to `./docs/case-studies/issue-{id}` folder, and use it to do deep case study analysis (also make sure to search online for additional facts and data), in which we will reconstruct timeline/sequence of events, find root causes of the problem, and propose possible solutions.
@@ -0,0 +1,15 @@
1
+ title: JavaScript publish does not work
2
+ state: CLOSED
3
+ author: konard
4
+ labels: bug
5
+ comments: 0
6
+ assignees:
7
+ projects:
8
+ milestone:
9
+ number: 113
10
+ --
11
+ Full CI run log: https://github.com/link-assistant/agent/actions/runs/20885464993/job/60008012717
12
+
13
+ Make sure we update all other places with paths to support ./js folder for js.yml
14
+
15
+ Please download all logs and data related about the issue to this repository, make sure we compile that data to `./docs/case-studies/issue-{id}` folder, and use it to do deep case study analysis (also make sure to search online for additional facts and data), in which we will reconstruct timeline/sequence of events, find root causes of the problem, and propose possible solutions.
@@ -0,0 +1,109 @@
1
+ {
2
+ "additions": 1300,
3
+ "author": {
4
+ "id": "MDQ6VXNlcjE0MzE5MDQ=",
5
+ "is_bot": false,
6
+ "login": "konard",
7
+ "name": "Konstantin Diachenko"
8
+ },
9
+ "body": "## Summary\n\nFix the JS release workflow failure by adding `--legacy-peer-deps` flag to npm install commands in release scripts.\n\n### Root Cause\nThe release scripts (`changeset-version.mjs` and `instant-version-bump.mjs`) were running `npm install --package-lock-only` without the `--legacy-peer-deps` flag, causing npm ERESOLVE errors due to peer dependency conflicts between solid-js versions.\n\n### Changes\n- Add `--legacy-peer-deps` flag to `scripts/changeset-version.mjs`\n- Add `--legacy-peer-deps` flag to `scripts/instant-version-bump.mjs`\n- Add case study documentation with root cause analysis in `docs/case-studies/issue-111/`\n\n### Test Plan\n- [x] Local lint and format checks pass\n- [ ] CI workflow passes on this PR\n- [ ] Release workflow should no longer fail with npm ERESOLVE errors\n\n## Issue Reference\nFixes #111\n\n---\n🤖 Generated with [Claude Code](https://claude.com/claude-code)",
10
+ "commits": [
11
+ {
12
+ "authoredDate": "2026-01-10T22:24:49Z",
13
+ "authors": [
14
+ {
15
+ "email": "drakonard@gmail.com",
16
+ "id": "MDQ6VXNlcjE0MzE5MDQ=",
17
+ "login": "konard",
18
+ "name": "konard"
19
+ }
20
+ ],
21
+ "committedDate": "2026-01-10T22:24:49Z",
22
+ "messageBody": "Adding CLAUDE.md with task information for AI processing.\nThis file will be removed when the task is complete.\n\nIssue: https://github.com/link-assistant/agent/issues/111",
23
+ "messageHeadline": "Initial commit with task details",
24
+ "oid": "deef8f99e96be1869c1dede68be1f72924aae011"
25
+ },
26
+ {
27
+ "authoredDate": "2026-01-10T22:28:07Z",
28
+ "authors": [
29
+ {
30
+ "email": "drakonard@gmail.com",
31
+ "id": "MDQ6VXNlcjE0MzE5MDQ=",
32
+ "login": "konard",
33
+ "name": "konard"
34
+ },
35
+ {
36
+ "email": "noreply@anthropic.com",
37
+ "id": "MDQ6VXNlcjgxODQ3",
38
+ "login": "claude",
39
+ "name": "Claude Opus 4.5"
40
+ }
41
+ ],
42
+ "committedDate": "2026-01-10T22:28:07Z",
43
+ "messageBody": "…cripts\n\nThe JS release workflow was failing because the release scripts\n(changeset-version.mjs and instant-version-bump.mjs) were running\n`npm install --package-lock-only` without the --legacy-peer-deps flag.\n\nThis caused npm ERESOLVE errors due to peer dependency conflicts\nbetween solid-js versions required by @opentui/solid and other packages.\n\nChanges:\n- Add --legacy-peer-deps to changeset-version.mjs\n- Add --legacy-peer-deps to instant-version-bump.mjs\n- Add case study documentation for issue #111\n\nFixes #111\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
44
+ "messageHeadline": "fix: Add --legacy-peer-deps flag to npm install commands in release s…",
45
+ "oid": "73d08af5e222b998607a8aa2b7268f5aeb04c967"
46
+ },
47
+ {
48
+ "authoredDate": "2026-01-10T22:28:36Z",
49
+ "authors": [
50
+ {
51
+ "email": "drakonard@gmail.com",
52
+ "id": "MDQ6VXNlcjE0MzE5MDQ=",
53
+ "login": "konard",
54
+ "name": "konard"
55
+ },
56
+ {
57
+ "email": "noreply@anthropic.com",
58
+ "id": "MDQ6VXNlcjgxODQ3",
59
+ "login": "claude",
60
+ "name": "Claude Opus 4.5"
61
+ }
62
+ ],
63
+ "committedDate": "2026-01-10T22:28:47Z",
64
+ "messageBody": "🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
65
+ "messageHeadline": "docs: Add CI run log to case study for issue #111",
66
+ "oid": "a16a508bd1a998aafc43420e8fb864235bd0fd25"
67
+ },
68
+ {
69
+ "authoredDate": "2026-01-10T22:31:47Z",
70
+ "authors": [
71
+ {
72
+ "email": "drakonard@gmail.com",
73
+ "id": "MDQ6VXNlcjE0MzE5MDQ=",
74
+ "login": "konard",
75
+ "name": "konard"
76
+ }
77
+ ],
78
+ "committedDate": "2026-01-10T22:31:47Z",
79
+ "messageBody": "This reverts commit deef8f99e96be1869c1dede68be1f72924aae011.",
80
+ "messageHeadline": "Revert \"Initial commit with task details\"",
81
+ "oid": "86b8babac5552395d2c447dcaa311f9e10acf699"
82
+ }
83
+ ],
84
+ "createdAt": "2026-01-10T22:24:56Z",
85
+ "deletions": 2,
86
+ "files": [
87
+ {
88
+ "path": "docs/case-studies/issue-111/README.md",
89
+ "additions": 110,
90
+ "deletions": 0
91
+ },
92
+ {
93
+ "path": "docs/case-studies/issue-111/ci-run-20803315337.txt",
94
+ "additions": 1188,
95
+ "deletions": 0
96
+ },
97
+ { "path": "scripts/changeset-version.mjs", "additions": 1, "deletions": 1 },
98
+ {
99
+ "path": "scripts/instant-version-bump.mjs",
100
+ "additions": 1,
101
+ "deletions": 1
102
+ }
103
+ ],
104
+ "mergedAt": "2026-01-10T22:38:48Z",
105
+ "number": 112,
106
+ "state": "MERGED",
107
+ "title": "fix: Add --legacy-peer-deps flag to release scripts",
108
+ "url": "https://github.com/link-assistant/agent/pull/112"
109
+ }