* Add inquirer to get some prompts * Create some questions Refs #16 * Add tomljs to read config for choices * Kebab-case the input file name * Fix listing errors * Lint all relevant js files * Add new incident npm script * Set as default so out of the box this just works * refactor out args that are used everywhere * Add inquirer validation * Handle inquirer answers * Create toml from answers * Fix linting * Treat title and file name separately This allows for Hugo new to work and enhances the gulp task but breaks TranslationBaseName e.g.: `post` for `post.es.md` (if `Multilingual` is enabled.) which I’m not sure is enabled by default. * add comment to replace * update new issue creation * fix spelling
		
			
				
	
	
		
			17 lines
		
	
	
		
			477 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			477 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
baseurl = "/"
 | 
						|
languageCode = "en-us"
 | 
						|
title = "StatusKit"
 | 
						|
 | 
						|
[permalinks]
 | 
						|
  incidents = "/incidents/:year/:month/:day/:slug/"
 | 
						|
 | 
						|
[params]
 | 
						|
  defaultLogo = "https://www.netlify.com/img/press/logos/logomark.svg"
 | 
						|
  faviconsPath = "/images/favicon/"
 | 
						|
 | 
						|
# List of systems monitored in this status page.
 | 
						|
# You'll be able to change their status every time
 | 
						|
# you open or update an incident.
 | 
						|
# Replace these examples with your own system names.
 | 
						|
systems = ["API", "CDN", "DNS", "Site delivery"]
 |