Files: 0878dcdeeba665bb9cdd97094b8d0e1c4baedabc / types / Service.js
341 bytesRaw
1 | const pipe = require('value-pipe') |
2 | |
3 | const Service = require('../lib/Service') |
4 | const pathModule = require('../lib/pathModule') |
5 | const normalizeNeeds = require('../lib/normalizeNeeds') |
6 | |
7 | module.exports = { |
8 | transform: pipe( |
9 | pathModule, |
10 | normalizeNeeds, |
11 | Service |
12 | ), |
13 | // glob: '**/+(services/*|service).js' |
14 | glob: '**/service.js' |
15 | } |
16 |
Built with git-ssb-web