-
Notifications
You must be signed in to change notification settings - Fork 1
/
plopfile.js
37 lines (37 loc) · 1.13 KB
/
plopfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = function (plop) {
// create your generators here
plop.setGenerator('blocks', {
description: 'Generator for blockly blocks in playwright',
prompts: [
{
type: 'input',
name: 'name',
message: 'Block name:',
},
{
type: 'list',
name: 'type',
message: 'Type:',
choices: ['assertions', 'browser', 'steps'],
default: 0,
},
], // array of inquirer prompts
actions: [
{
type: 'add',
path: 'src/blocks/{{type}}/{{camelCase name}}/definition.json',
template: '{}',
},
{
type: 'add',
path: 'src/blocks/{{type}}/{{camelCase name}}/index.js',
templateFile: 'templates/block.hbs',
},
{
type: 'append',
path: 'src/blocks/{{type}}/index.js',
template: "import './{{camelCase name}}';",
},
], // array of actions
});
};