UNPKG

@taqueria/plugin-helloworld

Version:

An example of a plugin for Taqueria

29 lines (28 loc) 676 B
"use strict"; // index.ts var import_node_sdk = require("@taqueria/node-sdk"); import_node_sdk.Plugin.create((_) => ({ alias: "helloworld", schema: "1.0", version: "0.1", tasks: [ import_node_sdk.Task.create({ task: "hello", command: "hello", aliases: [], description: "Hello World!", options: [ import_node_sdk.Option.create({ flag: "name", shortFlag: "n", description: "Your name", type: "string", defaultValue: "world!" }) ], handler: "echo 'Hello <%= it.name %>'", encoding: "none" }) ] }), process.argv); //# sourceMappingURL=index.js.map