UNPKG

@dkoul/auto-testid-cli

Version:

Command-line interface for React and Vue.js custom attribute generation

17 lines 833 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.validateCommand = validateCommand; const chalk_1 = __importDefault(require("chalk")); async function validateCommand(targetPath, options) { console.log(chalk_1.default.yellow('🚧 Validate command is not yet implemented')); console.log(chalk_1.default.gray('This feature will validate existing data-testid attributes for conflicts')); console.log(chalk_1.default.gray(`Target: ${targetPath}`)); if (options.fix) { console.log(chalk_1.default.gray('Fix mode: enabled')); } console.log(chalk_1.default.cyan('Coming in the next release!')); } //# sourceMappingURL=validate.js.map