Closed CRC32EX closed 7 months ago
Thank you !!! It works fine!!!
plopfile.mjs
export default function (plop) {
plop.setGenerator('test001', {
prompts: [
{
type: "input",
name: "name",
message: "Enter your name",
}
],
actions: [
{
type: "add",
path: "src/{{name}}.ts",
templateFile: "plop/templates/user.ts.hbs",
},
"THIS FILE IS VERY IMPORTANT.",
`After create this file, You have to send message to "john doe (john@example.com)".`
]
})
}
I just want to print text.
Like this. How can i do it?