(name)
| 48 | // Essentially a copy of the function in node-fixturify-project, converted from TS to JS. |
| 49 | // We need this for use during toJSON(). |
| 50 | function parseScoped(name) { |
| 51 | let matched = name.match(/(@[^@/]+)\/(.*)/); |
| 52 | if (matched) { |
| 53 | return { |
| 54 | scope: matched[1], |
| 55 | name: matched[2], |
| 56 | }; |
| 57 | } |
| 58 | return null; |
| 59 | } |
| 60 | |
| 61 | module.exports = class EmberCLIFixturifyProject extends FixturifyProject { |
| 62 | writeSync() { |
no outgoing calls
no test coverage detected
searching dependent graphs…