diff --git a/docs/issue_template.md b/docs/issue_template.md index f4e0438..b07919e 100644 --- a/docs/issue_template.md +++ b/docs/issue_template.md @@ -1,3 +1,3 @@ -# ISSUE +## ISSUE -# FIX SUGGESTION +## FIX SUGGESTION diff --git a/docs/pull_request_template.md b/docs/pull_request_template.md index 08481ab..7e7a656 100644 --- a/docs/pull_request_template.md +++ b/docs/pull_request_template.md @@ -1,3 +1,3 @@ -# What issue does this fix/feature? +## What issue does this fix/feature? -# What tests cover the fix/feature? +## What tests cover the fix/feature? diff --git a/package.json b/package.json index b3d82a1..b0be1d3 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "license": "MIT", "main": "./lib/CLI.js", "typings": "./lib/index.d.ts", - "version": "2.0.0-alpha-10", + "version": "2.0.0-alpha-11", "dependencies": { "chalk": "^2.3.0" }, diff --git a/src/Core/Actions/Typings.ts b/src/Core/Actions/Typings.ts index 78d705c..9055c93 100644 --- a/src/Core/Actions/Typings.ts +++ b/src/Core/Actions/Typings.ts @@ -41,7 +41,7 @@ class Script extends UpdateScript { const declarations: string[] = [] await Promise.all(project.children.map(async child => { - const dependencies = await this.gatherTypeDefinitions(project) + const dependencies = await this.gatherTypeDefinitions(child) dependencies.forEach(dependency => declarations.push(dependency)) })).then(async () => { tsconfig.compilerOptions.types = declarations.sort()