Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/issue_template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# ISSUE
## ISSUE

# FIX SUGGESTION
## FIX SUGGESTION
4 changes: 2 additions & 2 deletions docs/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -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?
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Actions/Typings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down