UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

35 lines 1.16 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schema_1 = require("@sprucelabs/schema"); const nodeFeatureOptionsSchema = { id: 'nodeFeatureOptions', version: 'v2020_07_22', namespace: 'SpruceCli', name: 'Create node module', description: 'Create a new node module, to be written in typescript, ready to rock!', fields: { /** . */ 'destination': { type: 'text', defaultValue: ".", options: undefined }, /** What's the name of your module?. */ 'name': { label: 'What\'s the name of your module?', type: 'text', isRequired: true, options: undefined }, /** How would you describe your module?. */ 'description': { label: 'How would you describe your module?', type: 'text', isRequired: true, options: undefined }, } }; schema_1.SchemaRegistry.getInstance().trackSchema(nodeFeatureOptionsSchema); exports.default = nodeFeatureOptionsSchema; //# sourceMappingURL=nodeFeatureOptions.schema.js.map