workai
8.1 KB
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/usr/bin/env node
/**
* Module dependencies.
*/
var path = require('path');
var commander = require('commander');
var inquirer = require('inquirer');
var chalk = require('chalk');
var shell = require("shelljs");
var parseArgs = require('minimist');
var fse = require('fs-extra');
var os = require('os');
var utils = require('./utils');
var bundleDll = require('./bundle-dll');
var bundle = require('./bundle');
var async = require('asyncawait/async');
var await = require('asyncawait/await');
var resolveCwd = require('import-cwd');
require("@babel/register");
// import config from '../workai.tools.config';
var program = new commander.Command();
// const promptList = [{
// type: 'input',
// message: '设置一个用户名:',
// name: 'name',
// default: "test_user" // 默认值
// }, {
// type: 'input',
// message: '请输入手机号:',
// name: 'phone',
// validate: function (val) {
// if (val.match(/\d{11}/g)) { // 校验位数
// return val;
// }
// return "请输入11位数字";
// }
// }];
// inquirer.prompt(promptList).then(answers => {
// console.log(answers); // 返回的结果
// });
// program
// .version('0.0.1', '-v, --version')
// .option('-p, --peppers', 'Add peppers')
// .option('-P, --pineapple', 'Add pineapple')
// .option('-b, --bbq-sauce', 'Add bbq sauce')
// .option('-c, --cheese [type]', 'Add the specified type of cheese [marble]', 'marble')
// .alias('m')
// .description('创建新的模块')
// .action(function (option) {
// console.log('Hello World')
// //为什么是Hello World 给你个眼神,自己去体会...
// })
// .on('--help', function () {
// console.log(' Examples:')
// console.log('')
// console.log('$ app module moduleName')
// console.log('$ app m moduleName')
// })
// .parse(process.argv);
program
.version('0.0.1')
.usage('例子')
.description('this is a lizi of commander');
// console.log('you ordered a pizza with:');
// if (program.peppers) console.log(' - peppers');
// if (program.pineapple) console.log(' - pineapple');
// if (program.bbqSauce) console.log(' - bbq');
// console.log(' - %s cheese', program.cheese);
program
.command('hello [st]')
.action(function (st, value) {
hello(st, value);
})
function hello(val, o) {
console.log(val);
console.log(1);
console.log(o)
}
/*构建生命周期
* init 初始化项目
*/
program
.command('init [templateName]')
.alias('i')
.description('初始化项目')
.action(option => {
// // 该对象用于存储所有与用户交互的数据
// let config = {
// // 假设我们需要用户自定义项目名称
// projectName: null
// };
// // 使用chalk打印美化的版本信息
// console.log(chalk.default.bold('hello v1.0.0'));
// // 用于存储所有的交互步骤,例如让用户输入项目名称就是其中一个步骤
// let promps = [];
// if (config.projectName === null) {
// promps.push({
// type: 'input',
// name: 'projectName',
// message: '请输入项目名称',
// validate: input => {
// if (!input) {
// return '项目名称不能为空';
// }
// // 更新对象中属性的数据
// config.projectName = input;
// return true;
// }
// });
// }
// // 至此,与用户的所有交互均已完成,answers是收集到的用户所填的所有数据
// // 同时,这也是你开始操作的地方,这个cli工具的核心代码应该从这个地方开始
// inquirer.prompt(promps).then(async (answers) => {
// // do something here
// console.log("::::::", answers);
// });
if (option == 'hro') {
var hro_template_path = path.resolve(__dirname, '..', 'templates', 'hro_template');
console.log(hro_template_path);
fse.copySync(hro_template_path, './', {
filter: (src, dest) => {
console.log(src);
if (src.indexOf('node_modules') != -1)
return false;
else
return true
}
});
// shell.cd('./');
shell.exec('yarn install');
shell.exec('workai start');
}
});
/*
* deploy 构建项目
*/
program
.command('deploy [dll|all]')
.alias('d')
.description('构建项目')
.action(option => {
var opject_path = process.cwd();
process.chdir(opject_path);//跳转到项目目录
console.log(path.resolve(__dirname), process.cwd(), path.resolve(process.cwd(), 'configs'));
if (option == 'dll') {
var hro_template_path = path.resolve(__dirname, '..', 'templates', 'hro_template');
_checkEnv(["configs/webpack.dll.**", "!node_modules"]).then(flag => {
if (flag) {
var webpackDllConfig = resolveCwd('./configs/webpack.dll.config');
bundleDll(webpackDllConfig).then(data => {
console.log("dll file is ok!");
});
// shell.exec('npx babel-node server/development.js');
} else {
console.log("当前所在目录不是项目目录");
}
});
} else if (option == 'all') {
var hro_template_path = path.resolve(__dirname, '..', 'templates', 'hro_template');
_checkEnv(["configs/webpack.production.**", "configs/webpack.dll.**", "!node_modules"]).then(flag => {
if (flag) {
var webpackDllConfig = resolveCwd('./configs/webpack.dll.config');
var webpackConfig = resolveCwd('./configs/webpack.production.config');
console.log(webpackDllConfig, webpackConfig);
// shell.exec('npx babel-node server/development.js');
} else {
console.log("当前所在目录不是项目目录");
}
});
} else {
_checkEnv(["configs/webpack.production.**", "!node_modules"]).then(flag => {
if (flag) {
var webpackConfig = resolveCwd('./configs/webpack.production.config');
bundle(webpackConfig).then(data => {
console.log("bundle file is ok!");
});
// shell.exec('npx babel-node server/development.js');
} else {
console.log("当前所在目录不是项目目录");
}
});
}
});
/*
*生产模式启动项目
*/
program
.command('service [projectPath]')
.alias('s')
.description('生产模式启动')
.action(option => {
shell.exec('npx babel-node server/production.js');
});
/*
*开发模式启动项目
*/
program
.command('start [projectPath]')
.alias('dev')
.description('开发模式启动')
.action(option => {
_checkEnv(["configs/webpack.develop.**", "!node_modules"]).then(flag => {
console.log("222:::", flag, process.cwd(), path.resolve(__dirname), option);
if (flag) {
shell.exec('npx babel-node server/development.js');
} else {
console.log("当前所在目录不是项目目录");
}
});
});
/*环境检测
*是否是项目环境
*paths = [] 例:paths = ["configs/webpack.**", "!node_modules"]
*/
function _checkEnv(paths) {
return utils.getPaths(paths).then(matching => {
return matching.length > 0;
});
}
program
.option('-s --save [value]', '保存');
program.parse(process.argv);
console.log(os.type(), os.platform());
// utils.getPaths(["**", "!node_modules"]).then(paths => {
// // console.log("##", paths);
// });
if (program.save) {
console.log(parseArgs(process.argv.slice(2)));
}