gitpadi 2.1.1 → 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/src/cli.ts CHANGED
@@ -30,11 +30,12 @@ import * as releases from './commands/releases.js';
30
30
  import * as contribute from './commands/contribute.js';
31
31
  import * as applyForIssue from './commands/apply-for-issue.js';
32
32
  import { runBountyHunter } from './commands/bounty-hunter.js';
33
+ import { dripsMenu } from './commands/drips.js';
33
34
  import * as gitlabIssues from './commands/gitlab-issues.js';
34
35
  import * as gitlabMRs from './commands/gitlab-mrs.js';
35
36
  import * as gitlabPipelines from './commands/gitlab-pipelines.js';
36
37
 
37
- const VERSION = '2.1.1';
38
+ const VERSION = '2.1.3';
38
39
  let targetConfirmed = false;
39
40
  let gitlabProjectConfirmed = false;
40
41
 
@@ -642,6 +643,7 @@ async function mainMenu() {
642
643
  { name: `${cyan('✨')} ${bold('Contributor Mode')} ${dim('— fork, clone, sync, submit PRs')}`, value: 'contributor' },
643
644
  { name: `${magenta('🛠️')} ${bold('Maintainer Mode')} ${dim('— manage issues, PRs, contributors')}`, value: 'maintainer' },
644
645
  { name: `${yellow('🏫')} ${bold('Organization/School')} ${dim('— assignments, grading, leaderboard')}`, value: 'org' },
646
+ { name: `${cyan('🌊')} ${bold('Drips Network')} ${dim('— apply for bounty issues on drips.network')}`, value: 'drips' },
645
647
  new inquirer.Separator(dim(' ─────────────────────────────')),
646
648
  { name: `${dim('🔄')} ${dim('Switch Platform')}`, value: 'switch' },
647
649
  { name: `${dim('👋')} ${dim('Exit')}`, value: 'exit' },
@@ -658,6 +660,8 @@ async function mainMenu() {
658
660
  } else if (mode === 'org') {
659
661
  await ensureTargetRepo();
660
662
  await safeMenu(orgMenu);
663
+ } else if (mode === 'drips') {
664
+ await safeMenu(dripsMenu);
661
665
  }
662
666
  } else {
663
667
  // GitLab mode