Sha256: 3e453a98dfd7cd12b81dc2028e53259f3ecb40a1ec6667b742deea011734287d

Contents?: true

Size: 384 Bytes

Versions: 7

Compression:

Stored size: 384 Bytes

Contents

var Q = require('q');
var cli = require('../util/cli');

function completion(config) {
    return new Q();
}

// -------------------

completion.line = function (logger, argv) {
    var options = cli.readOptions(argv);
    var name = options.argv.remain[1];

    return completion(logger, name);
};

completion.completion = function () {
    // TODO:
};

module.exports = completion;

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
entangled-0.0.16 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/lib/commands/completion.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/lib/commands/completion.js