Files
vue-cli-plugin-tauri/prompts.js
2020-08-05 13:37:11 -07:00

17 lines
334 B
JavaScript

module.exports = pkg => [
{
type: 'input',
name: 'appName',
message: 'What should the app name be?',
validate: input => !!input,
default: pkg.name
},
{
type: 'input',
name: 'windowTitle',
message: 'What should the window title be?',
validate: input => !!input,
default: 'Tauri App'
}
]