Skip to content

Commit beb71fe

Browse files
remove noisy console msgs
1 parent 7577a19 commit beb71fe

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

lib/transform-yui-object.js

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@ import addInheritedItems from './add-inherited-items'
33
import normalizeIDs from './normalize-ids'
44

55
export default function transformYuiObject(docs, projName) {
6-
console.log('Preparing Modules')
76
return transformModules(docs)
8-
.then(d => {
9-
console.log('Adding inherited items')
10-
return addInheritedItems(d)
11-
})
12-
.then(d => {
13-
console.log('Normalizing dependencies')
14-
return normalizeIDs(d, projName)
15-
})
7+
.then(d => addInheritedItems(d))
8+
.then(d => normalizeIDs(d, projName))
169
}

0 commit comments

Comments
 (0)