@slahon/lazykit 1.2.4 → 1.2.5
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/init.js +2 -2
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -7,7 +7,7 @@ const chalk = require('chalk');
|
|
|
7
7
|
const ora = require('ora');
|
|
8
8
|
|
|
9
9
|
const { log } = require('./logger');
|
|
10
|
-
const {
|
|
10
|
+
const { confirm } = require('./prompt');
|
|
11
11
|
const { isGitRepo, getGitRemote, parseGitHubRepo, isGhCliAvailable, isGhAuthenticated, detectStack, hasBranchProtection } = require('./git');
|
|
12
12
|
const { generateWorkflow } = require('./workflow');
|
|
13
13
|
const { generateClaudeMd } = require('./claude-md');
|
|
@@ -74,7 +74,7 @@ async function init({ dryRun = false } = {}) {
|
|
|
74
74
|
log.title('Configure LazyKit');
|
|
75
75
|
log.blank();
|
|
76
76
|
|
|
77
|
-
const label =
|
|
77
|
+
const label = 'lazykit';
|
|
78
78
|
const autoTrigger = await confirm('Trigger Claude on every new issue automatically? (no = only when you apply the label)', true);
|
|
79
79
|
const wantClaudeMd = await confirm('Generate CLAUDE.md project guide?', true);
|
|
80
80
|
|