gitpadi 2.1.2 → 2.1.3
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/cli.js +1 -1
- package/dist/commands/drips.js +426 -108
- package/package.json +1 -1
- package/src/cli.ts +1 -1
- package/src/commands/drips.ts +493 -117
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitpadi",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "GitPadi — AI-powered GitHub & GitLab management CLI. Fork repos, manage issues & PRs, score contributors, grade assignments, and automate everything. Powered by Anthropic Claude via GitLab Duo Agent Platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/cli.ts
CHANGED
|
@@ -35,7 +35,7 @@ import * as gitlabIssues from './commands/gitlab-issues.js';
|
|
|
35
35
|
import * as gitlabMRs from './commands/gitlab-mrs.js';
|
|
36
36
|
import * as gitlabPipelines from './commands/gitlab-pipelines.js';
|
|
37
37
|
|
|
38
|
-
const VERSION = '2.1.
|
|
38
|
+
const VERSION = '2.1.3';
|
|
39
39
|
let targetConfirmed = false;
|
|
40
40
|
let gitlabProjectConfirmed = false;
|
|
41
41
|
|