create-propelkit 1.0.0 → 1.0.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/package.json +1 -1
- package/src/index.js +10 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -110,6 +110,16 @@ async function main() {
|
|
|
110
110
|
|
|
111
111
|
// Launch Claude Code
|
|
112
112
|
messages.proLaunchingAIPM(projectDir);
|
|
113
|
+
|
|
114
|
+
// Give user time to read the instructions
|
|
115
|
+
await inquirer.prompt([
|
|
116
|
+
{
|
|
117
|
+
type: 'input',
|
|
118
|
+
name: 'continue',
|
|
119
|
+
message: chalk.dim('Press Enter to launch Claude Code...'),
|
|
120
|
+
}
|
|
121
|
+
]);
|
|
122
|
+
|
|
113
123
|
try {
|
|
114
124
|
await launchClaude(projectDir);
|
|
115
125
|
} catch (error) {
|