cli-engine-heroku
Advanced tools
Comparing version 7.0.6 to 7.0.7
@@ -8,2 +8,4 @@ import { Command as Base } from 'cli-engine-command'; | ||
readonly legacyHerokuClient: any; | ||
readonly cli: any; | ||
readonly out: any; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const cli_engine_command_1 = require("cli-engine-command"); | ||
const util_1 = require("util"); | ||
const deps_1 = require("./deps"); | ||
const deprecatedCLI = util_1.deprecate(() => { | ||
return require('cli-ux').cli; | ||
}, 'this.out and this.cli is deprecated. Please import the "cli-ux" module directly instead.'); | ||
class Command extends cli_engine_command_1.Command { | ||
@@ -26,3 +30,9 @@ get heroku() { | ||
} | ||
get cli() { | ||
return deprecatedCLI(); | ||
} | ||
get out() { | ||
return deprecatedCLI(); | ||
} | ||
} | ||
exports.Command = Command; |
{ | ||
"name": "cli-engine-heroku", | ||
"description": "heroku specific functionality for the cli-engine", | ||
"version": "7.0.6", | ||
"version": "7.0.7", | ||
"author": "Jeff Dickey @jdxcode", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/heroku/cli-engine-heroku/issues", |
28955
833