@salesforce/plugin-release-management
Version:
A plugin for preparing and publishing npm packages
23 lines • 775 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Channel = exports.CLI = void 0;
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
var CLI;
(function (CLI) {
CLI["SF"] = "sf";
CLI["SFDX"] = "sfdx";
})(CLI = exports.CLI || (exports.CLI = {}));
var Channel;
(function (Channel) {
Channel["LEGACY"] = "legacy";
Channel["STABLE"] = "stable";
Channel["STABLE_RC"] = "stable-rc";
Channel["LATEST"] = "latest";
Channel["LATEST_RC"] = "latest-rc";
})(Channel = exports.Channel || (exports.Channel = {}));
//# sourceMappingURL=types.js.map