You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
421 B

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = ready;
// eslint-disable-next-line consistent-return
function ready(context, callback, req) {
if (context.state) {
return callback(context.stats);
}
const name = req && req.url || callback.name;
context.logger.info(`wait until bundle finished${name ? `: ${name}` : ""}`);
context.callbacks.push(callback);
}