Reformat imports
This commit is contained in:
parent
0eca75199d
commit
146ff625a0
8 changed files with 10 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
|||
import {promises as fs} from 'fs'
|
||||
import { promises as fs } from 'fs'
|
||||
import * as path from 'path'
|
||||
import * as chalk from 'chalk'
|
||||
import * as ora from 'ora'
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import * as path from 'path'
|
||||
|
||||
import { EXT_PARTITIONS } from '../partitions';
|
||||
|
||||
export interface BlobEntry {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {promises as fs} from 'fs'
|
||||
import { promises as fs } from 'fs'
|
||||
import * as path from 'path'
|
||||
import * as chalk from 'chalk'
|
||||
import * as ora from 'ora'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import * as path from 'path'
|
||||
import * as util from 'util'
|
||||
|
||||
import { BlobEntry, partPathToSrcPath } from '../blobs/entry'
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import {Command, flags} from '@oclif/command'
|
||||
import {createWriteStream, promises as fs} from 'fs'
|
||||
import { Command, flags } from '@oclif/command'
|
||||
import { createWriteStream, promises as fs } from 'fs'
|
||||
import * as chalk from 'chalk'
|
||||
import * as cliProgress from 'cli-progress'
|
||||
import fetch from 'node-fetch'
|
||||
import {promises as stream} from 'stream'
|
||||
import { promises as stream } from 'stream'
|
||||
import * as path from 'path'
|
||||
|
||||
const VENDOR_INDEX_URL = 'https://developers.google.com/android/drivers'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import {Command, flags} from '@oclif/command'
|
||||
import {promises as fs} from 'fs'
|
||||
import { Command, flags } from '@oclif/command'
|
||||
import { promises as fs } from 'fs'
|
||||
import * as chalk from 'chalk'
|
||||
|
||||
import { serializeBlueprint } from '../build/soong'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import {Command, flags} from '@oclif/command'
|
||||
import {promises as fs} from 'fs'
|
||||
import { Command, flags } from '@oclif/command'
|
||||
import { promises as fs } from 'fs'
|
||||
import { listPart } from '../blobs/file_list'
|
||||
|
||||
import { ALL_PARTITIONS } from '../partitions'
|
||||
|
|
|
@ -1 +1 @@
|
|||
export {run} from '@oclif/command'
|
||||
export { run } from '@oclif/command'
|
||||
|
|
Loading…
Reference in a new issue