INNER CODE UNIT · JavaScript
templateNameRegex
peggyrayzis/react-native-create-bridge · src/index.js:14
const templateNameRegex = /\w+/;
const promptConfig = [
{
type: "input",
name: "templateName",
message: "What is your bridge module called?",
default: "ExampleBridge",
validate: input => templateNameRegex.test(input)
},
{
type: "checkbox",
name: "bridgeType",
message: "What type of bridge would you like to create?",
default: ["Native Module", "Native UI Component"],
choices: ["Native Module", "Native UI Component"]
},
{
type: "checkbox",