Skip to content

Commit 4a553f0

Browse files
committed
Fixes after review
1 parent 92c095a commit 4a553f0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
],
2626
"license": "SEE LICENSE IN LICENSE.txt",
2727
"dependencies": {
28-
"cpx": "^1.5.0",
2928
"lodash": "^4.17.10",
3029
"semver": "^5.5.0",
3130
"universal-analytics": "0.4.15",
@@ -38,6 +37,7 @@
3837
"@types/mocha": "^5.2.1",
3938
"@types/node": "6.0.46",
4039
"@types/universal-analytics": "0.4.1",
40+
"cpx": "^1.5.0",
4141
"mocha": "^5.2.0",
4242
"sinon": "^5.0.10",
4343
"tslint": "5.10.0",

src/common/utilities.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChildProcess, execSync, spawnSync } from 'child_process';
1+
import { ChildProcess, execSync } from 'child_process';
22
import * as os from 'os';
33
import * as path from 'path';
44
import { ILogger, LogLevel } from '../common/logger';
@@ -21,7 +21,6 @@ export function killProcess(childProcess: ChildProcess, logger?: ILogger): void
2121
} catch (error) {
2222
logger && logger.log(error, LogLevel.Error);
2323
}
24-
2524
}
2625

2726
export const enum Platform {

0 commit comments

Comments
 (0)