包含构建生成的静态资源文件、JavaScript模块及服务器端依赖项。新增了favicon.ico、多张PNG图标图片、Vue相关模块文件、axios库文件、错误处理中间件及样式文件等。这些文件是项目构建后的输出结果,用于生产环境部署。同时更新了构建配置和版本信息。
30 lines
533 B
JavaScript
30 lines
533 B
JavaScript
var abort = require('./abort.js')
|
|
, async = require('./async.js')
|
|
;
|
|
|
|
// API
|
|
module.exports = terminator;
|
|
|
|
/**
|
|
* Terminates jobs in the attached state context
|
|
*
|
|
* @this AsyncKitState#
|
|
* @param {function} callback - final callback to invoke after termination
|
|
*/
|
|
function terminator(callback)
|
|
{
|
|
if (!Object.keys(this.jobs).length)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// fast forward iteration index
|
|
this.index = this.size;
|
|
|
|
// abort jobs
|
|
abort(this);
|
|
|
|
// send back results we have so far
|
|
async(callback)(null, this.results);
|
|
}
|