I have this in my package.json, generating a nice README.md with verb-readme-generator as devDependency and verb installed globally:
"verb": {
"toc": true,
"tasks": [
"readme"
]
},
Is it possible to add a task (without adding a file) to produce another type of .md file? For example:
"verb": {
"toc": true,
"tasks": [
"readme",
"styleguide": {
"includeDir": "/path/to/include other files from into .styleguide.md",
"input": ".styleguide.md",
"output": "/foo/bar/styleguide.md"
}
]
},
I have this in my
package.json, generating a niceREADME.mdwithverb-readme-generatorasdevDependencyandverbinstalled globally:Is it possible to add a task (without adding a file) to produce another type of
.mdfile? For example: