How to use the heroku-cli-util.warn function in heroku-cli-util

To help you get started, we’ve selected a few heroku-cli-util examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github taneliheikkinen / heroku-wp-environment-sync / library / library.js View on Github external
warn : function (msg) {
        if(!this.show_messages)
            return;

        if(!msg)
            msg = "";

        cli.warn(msg);
    },