mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-30 08:03:55 +00:00
Simplify some exports
Change-type: patch
This commit is contained in:
parent
e1d51305b0
commit
03eed32f12
@ -14,18 +14,16 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import * as config from './config';
|
||||
import * as device from './device';
|
||||
import * as help from './help';
|
||||
import * as local from './local';
|
||||
import * as logs from './logs';
|
||||
import * as os from './os';
|
||||
import * as push from './push';
|
||||
import * as ssh from './ssh';
|
||||
import * as tunnel from './tunnel';
|
||||
import * as util from './util';
|
||||
|
||||
export { device, logs, local, help, os, config, ssh, util, push, tunnel };
|
||||
export * as config from './config';
|
||||
export * as device from './device';
|
||||
export * as help from './help';
|
||||
export * as local from './local';
|
||||
export * as logs from './logs';
|
||||
export * as os from './os';
|
||||
export * as push from './push';
|
||||
export * as ssh from './ssh';
|
||||
export * as tunnel from './tunnel';
|
||||
export * as util from './util';
|
||||
|
||||
export { build } from './build';
|
||||
|
||||
|
@ -15,9 +15,9 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
import { getBalenaSdk } from '../utils/lazy';
|
||||
import { awaitForToken, shutdownServer } from './server';
|
||||
import { awaitForToken } from './server';
|
||||
|
||||
export { shutdownServer };
|
||||
export { shutdownServer } from './server';
|
||||
|
||||
/**
|
||||
* @module auth
|
||||
|
Loading…
x
Reference in New Issue
Block a user