执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
'use strict';
const path = require('path');
 
module.exports = function (plop) {
    // starting prompt can be customized to display what you want
    // plop.setWelcomeMessage('[CUSTOM]'.yellow + ' What can I do for you?');
 
    // helpers are passed through handlebars syntax and made
    // available for use in the generator templates
 
    // adds 4 dashes around some text (yes es6/es2015 is supported)
    plop.addHelper('dashAround', (text) => '---- ' + text + ' ----');
 
    // formats an array of options like you would write
    // it, if you were speaking (one, two, and three)
    plop.addHelper('wordJoin', function (words) {
        return words.join(', ').replace(/(:?.*),/, '$1, and');
    });
 
    plop.addHelper('absPath', function (p) {
        return path.resolve(plop.getPlopfilePath(), p);
    });
 
    // greet the user using a partial
    plop.addPartial('salutation', '{{ greeting }}, my name is {{ properCase name }} and I am {{ age }}.');
 
    // load some additional helpers from a module installed using npm
    plop.load('plop-pack-fancy-comments', {
        prefix: '',
        upperCaseHeaders: true,
        commentStart: '',
        commentEnd: ''
    });
 
    const delayLog = msg => answers => new Promise((resolve) => {
        setTimeout(() => resolve(msg), 1000);
    });
 
    // setGenerator creates a generator that can be run with "plop generatorName"
    plop.setGenerator('test', {
        description: 'this is a test',
        prompts: [
            {
                type: 'input',
                name: 'name',
                message: 'What is your name?',
                validate: function (value) {
                    if ((/.+/).test(value)) { return true; }
                    return 'name is required';
                }
            }, {
                type: 'input',
                name: 'age',
                message: 'How old are you?',
                validate: function (value) {
                    var digitsOnly = /\d+/;
                    if (digitsOnly.test(value)) { return true; }
                    return 'Invalid age! Must be a number genius!';
                }
            }, {
                type: 'checkbox',
                name: 'toppings',
                message: 'What pizza toppings do you like?',
                choices: [
                    {name: 'Cheese', value: 'cheese', checked: true},
                    {name: 'Pepperoni', value: 'pepperoni'},
                    {name: 'Pineapple', value: 'pineapple'},
                    {name: 'Mushroom', value: 'mushroom'},
                    {name: 'Bacon', value: 'bacon', checked: true}
                ]
            }
        ],
        actions: [
            `this is a comment`,
            'this is another comment',
            delayLog('delayed thing'),
            delayLog('another delayed thing'),
            delayLog('this was also delayed'),
            {
                type: 'add',
                path: 'folder/{{dashCase name}}.txt',
                templateFile: 'templates/temp.txt',
                abortOnFail: true
            },
            function customAction(answers) {
                // move the current working directory to the plop file path
                // this allows this action to work even when the generator is
                // executed from inside a subdirectory
                process.chdir(plop.getPlopfilePath());
 
                // custom function can be synchronous or async (by returning a promise)
                var fs = require('fs');
                var existsMsg = 'psst {{name}}, change-me.txt already exists';
                var copiedMsg = 'hey {{name}}, I copied change-me.txt for you';
                var changeFileName = 'change-me.txt';
                var changeFilePath = 'folder/' + changeFileName;
 
                // you can use plop.renderString to render templates
                existsMsg = plop.renderString(existsMsg, answers);
                copiedMsg = plop.renderString(copiedMsg, answers);
 
                if (fs.existsSync(changeFilePath)) {
                    // returned value shows up in the console
                    return existsMsg;
                } else {
                    // do a synchronous copy via node fs
                    fs.writeFileSync(changeFilePath, fs.readFileSync('templates/' + changeFileName));
                    return copiedMsg;
                }
            },{
                type: 'modify',
                path: 'folder/change-me.txt',
                pattern: /(-- APPEND ITEMS HERE --)/gi,
                template: '$1\r\n{{name}}: {{age}}'
            },{
                type: 'modify',
                path: 'folder/change-me.txt',
                pattern: /(-- PREPEND ITEMS HERE --)/gi,
                templateFile: 'templates/part.txt'
            },{
                type: 'modify',
                path: 'folder/change-me.txt',
                pattern: /## replace name here ##/gi,
                template: 'replaced => {{dashCase name}}'
            }
        ]
    });
 
 
    // adding a custom inquirer prompt type
    plop.addPrompt('directory', require('inquirer-directory'));
 
    plop.setGenerator('custom-prompt', {
        description: 'custom inquirer prompt example',
        prompts: [
            {
                type: 'input',
                name: 'fileName',
                message: 'Pick a file name:',
                validate: function (value) {
                    if ((/.+/).test(value)) { return true; }
                    return 'file name is required';
                }
            }, {
                type: 'directory',
                name: 'path',
                message: 'where would you like to put this component?',
                basePath: plop.getPlopfilePath()
            }
        ],
        actions: [
            function(data) {
                console.log(data);
                return 'yay';
            }, {
                type: 'add',
                path: '{{absPath path}}/{{fileName}}.txt',
                template: '{{absPath path}}/{{fileName}} plopped!'
            }
        ]
    });
 
 
    // test with dynamic actions, regarding responses to prompts
    plop.setGenerator('dynamic actions', {
        description: 'another test using an actions function',
        prompts: [
            {
                type: 'input',
                name: 'name',
                message: 'What is your name?',
                validate: function (value) {
                    if ((/.+/).test(value)) { return true; }
                    return 'name is required';
                }
            }, {
                type: 'confirm',
                name: 'hasPotatoes',
                message: 'Do you want potatoes with your burger?'
            }
        ],
        actions: function(data) {
            var actions = [
                {
                    type: 'add',
                    path: 'folder/{{dashCase name}}-burger.txt',
                    templateFile: 'templates/burger.txt',
                    abortOnFail: true
                }
            ];
 
            if(data.hasPotatoes) {
                actions = actions.concat([
                    {
                        type: 'add',
                        path: 'folder/{{dashCase name}}-potatoes.txt',
                        templateFile: 'templates/potatoes.txt',
                        abortOnFail: true
                    },{
                        type: 'modify',
                        path: 'folder/{{dashCase name}}-burger.txt',
                        pattern: /(!\n)/gi,
                        template: '$1Your potatoes: {{dashCase name}}-potatoes.txt'
                    }
                ]);
            }
 
            return actions;
        }
    });
};