This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcli.js
executable file
·214 lines (195 loc) · 4.49 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
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
212
213
214
#!/usr/bin/env node
var moduleInit = require('../')
var path = require('path')
var chalk = require('chalk')
var config = require('git-config').sync()
var inquirer = require('inquirer')
var clopts = require('cliclopts')([
{
name: 'dir',
abbr: 'd',
help: 'specify module directory (default: cwd)'
},
{
name: 'version',
abbr: 'v',
boolean: true,
help: 'show version information'
},
{
name: 'force',
abbr: 'f',
help: 'skip prompt and init with defaults',
boolean: true
},
{
name: 'help',
abbr: 'h',
help: 'show help',
boolean: true
}
])
var argv = require('minimist')(process.argv.slice(2), {
alias: clopts.alias(),
boolean: clopts.boolean(),
default: clopts.default()
})
catchInputErrors()
var questions = [
{
type: 'input',
name: 'pkgName',
message: 'name',
default: path.basename(argv.dir || process.cwd())
},
{
type: 'input',
name: 'pkgVersion',
message: 'version',
default: '1.0.0'
},
{
type: 'input',
name: 'pkgDescription',
message: 'description'
},
{
type: 'input',
name: 'pkgKeywords',
message: 'keywords'
},
{
type: 'list',
name: 'pkgLicense',
message: 'license',
choices: ['Apache-2.0', 'BSD-3-Clause', 'CC0-1.0', 'ISC', 'MIT', 'UNLICENSED'],
default: 'ISC'
},
{
type: 'confirm',
name: 'private',
message: 'private',
default: false
},
{
type: 'confirm',
name: 'pkgContributing',
message: 'CONTRIBUTING.md',
default: true
},
{
type: 'list',
name: 'pkgLinter',
message: 'linter',
choices: ['standard', 'semistandard'],
default: 'standard'
},
{
type: 'confirm',
name: 'gitInit',
message: 'git init',
default: true
},
{
type: 'confirm',
name: 'npmInstall',
message: 'npm install',
default: true
}
]
if (argv.force) {
force()
} else {
prompt()
}
function catchInputErrors () {
var errs = 0
if (argv.version) {
console.log(require(path.resolve(__dirname, '..', 'package.json')).version)
process.exit(0)
}
if (argv.help) {
console.log('Usage: module-init [options]')
clopts.print()
process.exit(0)
}
if (!config.user ||
!config.user.name) {
console.log(chalk.red('Missing user name in .gitconfig'))
console.log(' Please make sure your name is set, e.g.')
console.log(' git config --global user.name "YOUR NAME"')
errs++
}
if (!config.user ||
!config.user.email) {
console.log(chalk.red('Missing user email in .gitconfig'))
console.log(' Please make sure your email is set, e.g.')
console.log(' git config --global user.email "YOUR EMAIL"')
errs++
}
if (!config.github || !config.github.user) {
console.log(chalk.red('Missing github user in .gitconfig'))
console.log(' Please make sure your github username is set, e.g.')
console.log(' git config --global github.user "YOUR USERNAME"')
errs++
}
if (errs) process.exit(1)
}
function force () {
var data = {}
for (var i = 0; i < questions.length; i++) {
if (typeof questions[i].default !== 'undefined') {
data[questions[i].name] = questions[i].default
}
}
data = prepData(data)
init(data)
}
function prompt () {
inquirer.prompt(questions, function (data) {
data = prepData(data)
init(data)
})
}
function prepData (data) {
data.usrName = config.user.name
data.usrEmail = config.user.email
data.usrGithub = config.github.user
if (argv.dir) data.dir = argv.dir
if (!data.pkgDescription) data.pkgDescription = ''
if (!data.pkgKeywords) data.pkgKeywords = ''
if (data.pkgKeywords !== '') {
data.pkgKeywords = data.pkgKeywords
.split(/[\s,]+/)
.filter(function (value, index, self) {
return !!value && self.indexOf(value) === index
})
.map(function (value) {
return '"' + value + '"'
})
.join(', ')
}
return data
}
function init (data) {
moduleInit(data)
.on('create', function (file) {
// file created
console.log(chalk.green('✓ ') + chalk.bold(file) + ' created')
})
.on('warn', function (msg) {
// something weird happened
console.log(chalk.yellow('✗ ' + msg))
})
.on('err', function (err) {
// something went horribly wrong!
console.error(err)
process.exit(1)
})
.on('done', function (res) {
// we did it!
console.log(chalk.green('✓ ') + chalk.bold(res.pkgName) + ' initialized')
process.exit(0)
})
.run() // run the thing
}