claude-code-templates 1.3.0 → 1.3.2

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/prompts.js +2 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "CLI tool to setup Claude Code configurations with framework-specific commands and automation hooks for JavaScript/TypeScript and Python projects",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/prompts.js CHANGED
@@ -1,16 +1,8 @@
1
1
  const chalk = require('chalk');
2
2
  const inquirer = require('inquirer');
3
3
 
4
- // Override the checkbox prompt to remove help text
5
- class CustomCheckboxPrompt extends inquirer.prompt.prompts.checkbox {
6
- constructor(questions, rl, answers) {
7
- super(questions, rl, answers);
8
- // Set dontShowHints to true to suppress the help text
9
- this.dontShowHints = true;
10
- }
11
- }
12
-
13
- inquirer.registerPrompt('checkbox', CustomCheckboxPrompt);
4
+ // Note: Custom checkbox prompt was causing choices not to display
5
+ // Removed custom prompt to fix command selection issue
14
6
  const { getAvailableLanguages, getFrameworksForLanguage } = require('./templates');
15
7
  const { getCommandsForLanguageAndFramework } = require('./command-scanner');
16
8
  const { getHooksForLanguage, getMCPsForLanguage } = require('./hook-scanner');