UNPKG

@elsikora/setup-wizard

Version:

Setup Wizard - CLI scaffolding utility

17 lines (15 loc) 832 B
#!/usr/bin/env node const GITIGNORE_CONFIG_MESSAGES = { confirmGenerate: "Do you want to generate .gitignore file for your project?", deletedExisting: "Deleted existing .gitignore file.", existingFileFound: (filePath) => `An existing .gitignore file was found (${filePath}). Would you like to replace it?`, failedCheckExisting: "Failed to check existing .gitignore setup", failedComplete: "Failed to complete .gitignore installation", failedConfirmation: "Failed to get user confirmation", failedDeleteExisting: "Failed to delete existing .gitignore file", fileGenerated: ".gitignore file generated", generatingFile: "Generating .gitignore file...", keepingExisting: "Keeping existing .gitignore file.", }; export { GITIGNORE_CONFIG_MESSAGES }; //# sourceMappingURL=messages.constant.js.map