add-tinykeys-post-command-hook-plugin 
Add tinykeys plugin for post-command-hook
Installation
$ npm install add-tinykeys-post-command-hook-plugin
or
$ yarn add add-tinykeys-post-command-hook-plugin
Usage
const PostCommandHook = require("post-command-hook");
const addTinykeys = require("add-tinykeys-post-command-hook-plugin");
const postCommandHook = new PostCommandHook({ command: "npx", args: ["create-react-app", "myapp"] });
postCommandHook.use(addTinykeys("myapp"));
(async () => {
await postCommandHook.run();
})();
API
addTinykeysPostCommandHookPlugin(cwd?)
Creates a function to be passed to post-command-hook's .use() as a plugin function.
cwd
Type: string
Default: process.cwd()
The current working directory where tinykeys should be installed to.
License
MIT © Rushan Alyautdinov