(tree, options)
| 39 | customTransformsMap.set('amd', { |
| 40 | files: ['vendor/auth0-js.js', 'vendor/auth0-lock.js', 'vendor/auth0-lock-passwordless.js'], |
| 41 | callback(tree, options) { |
| 42 | const stew = require('broccoli-stew'); |
| 43 | |
| 44 | return stew.map(tree, (content, relativePath) => { |
| 45 | const name = options[relativePath].as; |
| 46 | |
| 47 | return `${name} was transformed`; |
| 48 | }); |
| 49 | }, |
| 50 | processOptions() {}, |
| 51 | options: { |
| 52 | 'vendor/auth0-js.js': { |
no outgoing calls
no test coverage detected
searching dependent graphs…