We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361bdf0 commit d4cb34dCopy full SHA for d4cb34d
docs/README.md
@@ -74,13 +74,17 @@ The exported function receives an options argument with the following type signa
74
```typescript
75
interface options {
76
inquirer: Inquirer;
77
- render: (path: string, data: object, options: object) => Promise;
+ render: RenderInPlace;
78
+ fs: FS;
79
+ rimraf: Rimraf;
80
where: string;
81
}
82
```
83
84
`inquirer` is from the [inquirer](https://www.npmjs.com/package/inquirer) module.
85
`render` is from the [render-in-place](https://www.npmjs.com/package/render-in-place) module.
86
+`fs` is from the [fs-extra](https://www.npmjs.com/package/fs-extra) module.
87
+`rimraf` is from the [rimraf](https://www.npmjs.com/package/rimraf) module.
88
89
## npm templates
90
0 commit comments