Skip to content

Commit fc48b11

Browse files
cleanup imports in index
1 parent 9c837c0 commit fc48b11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

33
import 'source-map-support/register';
4+
import * as fs from 'fs';
45
import * as os from 'os';
56
import { Command } from 'commander';
6-
import { readFileSync } from 'fs';
77
import path, { join } from 'path';
88
import { LicenseType, LicensingClient } from './license-client';
99
import { PromptForSecretInput } from './utilities';
@@ -25,7 +25,7 @@ export * from './android-sdk';
2525
export * from './unity-editor';
2626

2727
const pkgPath = join(__dirname, '..', 'package.json');
28-
const pkg = JSON.parse(readFileSync(pkgPath, 'utf-8'));
28+
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'));
2929
const program = new Command();
3030

3131
program.name('unity-cli')

0 commit comments

Comments
 (0)