crabatool 1.0.270 → 1.0.273
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/server.js +1 -1
- package/package.json +1 -1
- package/tool/start.js +1 -1
- package/tool/upgrade.js +1 -1
package/lib/server.js
CHANGED
package/package.json
CHANGED
package/tool/start.js
CHANGED
|
@@ -210,7 +210,7 @@ class Start {
|
|
|
210
210
|
// 按配置对项目init.js和biz.js打包
|
|
211
211
|
mergeInit() {
|
|
212
212
|
start.checkPath();
|
|
213
|
-
if (config.modName && config.childModList
|
|
213
|
+
if (config.modName && config.childModList) {
|
|
214
214
|
config.mergeinitjs = true; // 标记仅打包,不监视文件变动
|
|
215
215
|
require('./bizAndInit.js');
|
|
216
216
|
} else {
|
package/tool/upgrade.js
CHANGED
|
@@ -190,7 +190,7 @@ class Upgrade {
|
|
|
190
190
|
|
|
191
191
|
var logs = [];
|
|
192
192
|
this.gitLogs.forEach(function(log, index) {
|
|
193
|
-
logs.push('
|
|
193
|
+
logs.push(log.branch_log + '【craba日志' + (index + 1) + '】' + ',时间:' + log.create_time);
|
|
194
194
|
});
|
|
195
195
|
var msg = logs.join(';\t');
|
|
196
196
|
|