We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7577a19 commit beb71feCopy full SHA for beb71fe
lib/transform-yui-object.js
@@ -3,14 +3,7 @@ import addInheritedItems from './add-inherited-items'
3
import normalizeIDs from './normalize-ids'
4
5
export default function transformYuiObject(docs, projName) {
6
- console.log('Preparing Modules')
7
return transformModules(docs)
8
- .then(d => {
9
- console.log('Adding inherited items')
10
- return addInheritedItems(d)
11
- })
12
13
- console.log('Normalizing dependencies')
14
- return normalizeIDs(d, projName)
15
+ .then(d => addInheritedItems(d))
+ .then(d => normalizeIDs(d, projName))
16
}
0 commit comments