-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
77 lines (65 loc) · 1.76 KB
/
cli.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
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
#!/usr/bin/env node
'use strict';
const path = require('path');
const Liftoff = require('liftoff');
const args = process.argv.slice(2);
const argv = require('minimist')(args);
const v8flags = require('v8flags');
const interpret = require('interpret');
const chalk = require('chalk');
const nodePlop = require('node-plop');
const globalPkg = require('./package.json');
const Plop = new Liftoff({
name: 'plop',
extensions: interpret.jsVariants,
v8flags: v8flags
});
Plop.launch({
cwd: argv.cwd,
}, run);
function run(env) {
// set the default base path to the plopfile directory
const plop = nodePlop();
// handle request for usage and options
if (argv.help || argv.h) {
console.log('displayHelpScreen');
process.exit(0);
}
// handle request for initializing a new plopfile
if (argv.init || argv.i) {
console.log('createInitPlopfile');
process.exit(0);
/*
return out.createInitPlopfile(env.cwd, function(err){
if (err){
console.log(err);
process.exit(1);
}
process.exit(0);
});
*/
}
// handle request for version number
if (argv.version || argv.v) {
if (env.modulePackage.version !== globalPkg.version) {
console.log(chalk.yellow('CLI version'), globalPkg.version);
console.log(chalk.yellow('Local version'), env.modulePackage.version);
} else {
console.log(globalPkg.version);
}
return;
}
plop.load(path.resolve(path.join(__dirname, 'src', 'plop-helpers.js')));
plop.setGenerator('cli', {
description: 'Run main plopfile',
prompts: [],
actions: [{
type: 'plop',
path: '..',
stdout: process.stdout,
cwd: process.cwd(),
defaultGenerator: 'generate'
}]
});
plop.getGenerator('cli').runActions();
}