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.
34 lines
872 B
34 lines
872 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.createManagers = void 0;
|
|
function _distributionCert() {
|
|
const data = require("./distributionCert");
|
|
_distributionCert = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function _provisioningProfile() {
|
|
const data = require("./provisioningProfile");
|
|
_provisioningProfile = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function _pushKey() {
|
|
const data = require("./pushKey");
|
|
_pushKey = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
const createManagers = ctx => ({
|
|
distributionCert: new (_distributionCert().DistCertManager)(ctx),
|
|
pushKey: new (_pushKey().PushKeyManager)(ctx),
|
|
provisioningProfile: new (_provisioningProfile().ProvisioningProfileManager)(ctx)
|
|
});
|
|
exports.createManagers = createManagers;
|
|
//# sourceMappingURL=createManagers.js.map
|