update async

This commit is contained in:
2017-03-08 14:50:58 +01:00
parent a54015da16
commit 1db5d6e669
2 changed files with 3 additions and 5 deletions

View File

@@ -14,12 +14,12 @@ export let test = async (versionArg): Promise<void> => {
}
}
let npmDependencies = async () => {
let npmDependencies = async ():Promise <void> => {
plugins.beautylog.info('now installing dependencies:')
await bash('npm install')
}
let npmTest = async () => {
let npmTest = async (): Promise<void> => {
plugins.beautylog.info('now starting tests:')
await bash('npm test')
}