(format)
| 64 | const removeSourcePath = replace(SOURCE_PATH, '') |
| 65 | |
| 66 | const createModulePath = (format) => { |
| 67 | const formatPathSegment = format === CJS_MODULES ? [] : [format] |
| 68 | const modulePath = resolvePath(DIR_PATH, ...formatPathSegment) |
| 69 | return replace(SOURCE_PATH, modulePath) |
| 70 | } |
| 71 | |
| 72 | const createFolder = (dir) => mkdirp.sync(resolvePath(dir)) |
| 73 |
no test coverage detected
searching dependent graphs…