UNPKG

627 BJavaScriptView Raw
1
2/*
3 * Copyright (c) 2018, salesforce.com, inc.
4 * All rights reserved.
5 * Licensed under the BSD 3-Clause license.
6 * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
7 */
8
9/**
10 * Don't allow the GA version or later of the plugin to be installed in a v6 or earlier CLI
11 */
12module.exports.ensureVersionCompatibility = function() {
13 // The cli-engine version is only set in a v6 CLI
14 if (process.env.CLI_ENGINE_VERSION) {
15 console.error('Plugin "salesforcedx" v45.8 or later may only be used in a v7.0.0 or later CLI.');
16 process.exit(1);
17 }
18};