mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-30 16:13:59 +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.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import * as config from './config';
|
export * as config from './config';
|
||||||
import * as device from './device';
|
export * as device from './device';
|
||||||
import * as help from './help';
|
export * as help from './help';
|
||||||
import * as local from './local';
|
export * as local from './local';
|
||||||
import * as logs from './logs';
|
export * as logs from './logs';
|
||||||
import * as os from './os';
|
export * as os from './os';
|
||||||
import * as push from './push';
|
export * as push from './push';
|
||||||
import * as ssh from './ssh';
|
export * as ssh from './ssh';
|
||||||
import * as tunnel from './tunnel';
|
export * as tunnel from './tunnel';
|
||||||
import * as util from './util';
|
export * as util from './util';
|
||||||
|
|
||||||
export { device, logs, local, help, os, config, ssh, util, push, tunnel };
|
|
||||||
|
|
||||||
export { build } from './build';
|
export { build } from './build';
|
||||||
|
|
||||||
|
@ -15,9 +15,9 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { getBalenaSdk } from '../utils/lazy';
|
import { getBalenaSdk } from '../utils/lazy';
|
||||||
import { awaitForToken, shutdownServer } from './server';
|
import { awaitForToken } from './server';
|
||||||
|
|
||||||
export { shutdownServer };
|
export { shutdownServer } from './server';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @module auth
|
* @module auth
|
||||||
|
Loading…
x
Reference in New Issue
Block a user