configure-precommit 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.
@@ -97,12 +97,11 @@ check_dependencies() {
97
97
  check_dep "curl" "brew install curl (macOS) or apt install curl (Linux)" || ((missing++))
98
98
  check_dep "python3" "brew install python3 (macOS) or apt install python3 (Linux)" || ((missing++))
99
99
 
100
- # Check for PyYAML
100
+ # Check for PyYAML (optional - script has fallback)
101
101
  if command -v python3 &>/dev/null; then
102
102
  if ! python3 -c "import yaml" 2>/dev/null; then
103
- echo -e "${RED}[ERROR]${NC} Missing Python package: ${YELLOW}PyYAML${NC}"
104
- echo -e " Install with: ${CYAN}pip3 install pyyaml${NC}"
105
- ((missing++))
103
+ echo -e "${YELLOW}[WARN]${NC} PyYAML not installed (optional)"
104
+ echo -e " For better YAML validation: ${CYAN}pip3 install pyyaml${NC}"
106
105
  fi
107
106
  fi
108
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "configure-precommit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Agentic pre-commit setup - automatically configures pre-commit hooks for any repository using AI",
5
5
  "keywords": [
6
6
  "pre-commit",