mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-23 15:32:22 +00:00
Remove unused dependencies imports from various files
This commit is contained in:
parent
09fe4b11ad
commit
50cb04b6f7
@ -1,12 +1,10 @@
|
|||||||
(function() {
|
(function() {
|
||||||
var _, async, capitano, commandOptions, deviceConfig, form, htmlToText, image, inject, manager, os, path, pine, registerDevice, resin, vcs, visuals;
|
var _, async, capitano, commandOptions, deviceConfig, form, htmlToText, image, inject, manager, pine, registerDevice, resin, vcs, visuals;
|
||||||
|
|
||||||
capitano = require('capitano');
|
capitano = require('capitano');
|
||||||
|
|
||||||
_ = require('lodash');
|
_ = require('lodash');
|
||||||
|
|
||||||
path = require('path');
|
|
||||||
|
|
||||||
async = require('async');
|
async = require('async');
|
||||||
|
|
||||||
resin = require('resin-sdk');
|
resin = require('resin-sdk');
|
||||||
@ -31,8 +29,6 @@
|
|||||||
|
|
||||||
htmlToText = require('html-to-text');
|
htmlToText = require('html-to-text');
|
||||||
|
|
||||||
os = require('os');
|
|
||||||
|
|
||||||
commandOptions = require('./command-options');
|
commandOptions = require('./command-options');
|
||||||
|
|
||||||
exports.list = {
|
exports.list = {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
(function() {
|
(function() {
|
||||||
var SSH_KEY_WIDTH, _, async, capitano, commandOptions, form, fs, resin, visuals;
|
var _, async, capitano, commandOptions, form, fs, resin, visuals;
|
||||||
|
|
||||||
_ = require('lodash');
|
_ = require('lodash');
|
||||||
|
|
||||||
@ -31,8 +31,6 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
SSH_KEY_WIDTH = 43;
|
|
||||||
|
|
||||||
exports.info = {
|
exports.info = {
|
||||||
signature: 'key <id>',
|
signature: 'key <id>',
|
||||||
description: 'list a single ssh key',
|
description: 'list a single ssh key',
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
(function() {
|
(function() {
|
||||||
var _, async, resin;
|
var _, resin;
|
||||||
|
|
||||||
_ = require('lodash');
|
_ = require('lodash');
|
||||||
|
|
||||||
async = require('async');
|
|
||||||
|
|
||||||
resin = require('resin-sdk');
|
resin = require('resin-sdk');
|
||||||
|
|
||||||
exports.set = {
|
exports.set = {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
capitano = require('capitano')
|
capitano = require('capitano')
|
||||||
_ = require('lodash')
|
_ = require('lodash')
|
||||||
path = require('path')
|
|
||||||
async = require('async')
|
async = require('async')
|
||||||
resin = require('resin-sdk')
|
resin = require('resin-sdk')
|
||||||
visuals = require('resin-cli-visuals')
|
visuals = require('resin-cli-visuals')
|
||||||
@ -13,7 +12,6 @@ pine = require('resin-pine')
|
|||||||
deviceConfig = require('resin-device-config')
|
deviceConfig = require('resin-device-config')
|
||||||
form = require('resin-cli-form')
|
form = require('resin-cli-form')
|
||||||
htmlToText = require('html-to-text')
|
htmlToText = require('html-to-text')
|
||||||
os = require('os')
|
|
||||||
|
|
||||||
commandOptions = require('./command-options')
|
commandOptions = require('./command-options')
|
||||||
|
|
||||||
|
@ -24,8 +24,6 @@ exports.list =
|
|||||||
console.log visuals.table.horizontal keys, [ 'id', 'title' ]
|
console.log visuals.table.horizontal keys, [ 'id', 'title' ]
|
||||||
.nodeify(done)
|
.nodeify(done)
|
||||||
|
|
||||||
SSH_KEY_WIDTH = 43
|
|
||||||
|
|
||||||
exports.info =
|
exports.info =
|
||||||
signature: 'key <id>'
|
signature: 'key <id>'
|
||||||
description: 'list a single ssh key'
|
description: 'list a single ssh key'
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
_ = require('lodash')
|
_ = require('lodash')
|
||||||
async = require('async')
|
|
||||||
resin = require('resin-sdk')
|
resin = require('resin-sdk')
|
||||||
|
|
||||||
exports.set =
|
exports.set =
|
||||||
|
Loading…
Reference in New Issue
Block a user