summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-29 17:41:19 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-29 17:41:21 +0900
commitd55bedc02ff6b8e7ec8dd84bd2147ea0fbc2a940 (patch)
tree52dd2b6ae66df8e530549cca5b08022eb6e22acf /src/utils
parentImplement logger (diff)
downloadsharkey-d55bedc02ff6b8e7ec8dd84bd2147ea0fbc2a940.tar.gz
sharkey-d55bedc02ff6b8e7ec8dd84bd2147ea0fbc2a940.tar.bz2
sharkey-d55bedc02ff6b8e7ec8dd84bd2147ea0fbc2a940.zip
:rocket:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/check-dependencies.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/check-dependencies.ts b/src/utils/check-dependencies.ts
index 364c24581d..94b3bd3518 100644
--- a/src/utils/check-dependencies.ts
+++ b/src/utils/check-dependencies.ts
@@ -1,5 +1,5 @@
import { log } from './logger';
-import {exec} from 'shelljs';
+import { exec } from 'shelljs';
export default function(): void {
checkDependency('Node.js', 'node -v', x => x.match(/^v(.*)\r?\n$/)[1]);