rnpm-plugin-dom
Version:
rnpm plugin that generates a DOM template project
29 lines (28 loc) • 711 B
JavaScript
module.exports = [
{
func: require("./src/dom"),
description: "Generate React Native DOM template project",
name: "dom",
options: [
{
command: "--domVersion [version]",
description: "The version of react-native-dom to use"
},
{
command: "--exact",
description: "Install react-native-dom at an exact version"
},
{
command: "--verbose",
description: "Enables logging",
default: false
},
{
command: "--include-canary",
description:
"When resolving compatible react-native-dom versions, if canary releases should be considered",
default: false
}
]
}
];