65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.SnapStorePublisher = void 0;
|
|
|
|
function _electronPublish() {
|
|
const data = require("electron-publish");
|
|
|
|
_electronPublish = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _builderUtil() {
|
|
const data = require("builder-util");
|
|
|
|
_builderUtil = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
var path = _interopRequireWildcard(require("path"));
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
|
|
class SnapStorePublisher extends _electronPublish().Publisher {
|
|
constructor(context, options) {
|
|
super(context);
|
|
this.options = options;
|
|
this.providerName = "snapStore";
|
|
}
|
|
|
|
upload(task) {
|
|
this.createProgressBar(path.basename(task.file), -1);
|
|
const args = ["publish-snap", "-f", task.file];
|
|
let channels = this.options.channels;
|
|
|
|
if (channels == null) {
|
|
channels = ["edge"];
|
|
} else {
|
|
if (typeof channels === "string") {
|
|
channels = channels.split(",");
|
|
}
|
|
}
|
|
|
|
for (const channel of channels) {
|
|
args.push("-c", channel);
|
|
}
|
|
|
|
return (0, _builderUtil().executeAppBuilder)(args);
|
|
}
|
|
|
|
toString() {
|
|
return "Snap Store";
|
|
}
|
|
|
|
} exports.SnapStorePublisher = SnapStorePublisher;
|
|
// __ts-babel@6.0.4
|
|
//# sourceMappingURL=SnapStorePublisher.js.map
|