Support nested keys, drop node 6
Nested keys support
Now supporting nested keys
const { shallowPopulate } = require('feathers-shallow-populate')
const populateTasks = shallowPopulate({
include: [{
service: 'tasks',
nameAs: 'tasks',
keyHere: '_id',
keyThere: 'taskSet.taskSetId', // Yeah, baby!
asArray: true
}]
})Support node 8+
The breaking change in this release is that node 6 is no longer supported.