| 3 | import path from 'path' |
| 4 | |
| 5 | interface InitOptions { |
| 6 | build: string |
| 7 | paths: string[] |
| 8 | } |
| 9 | |
| 10 | export const init = ({ build, paths }: InitOptions) => { |
| 11 | const fromatRelative = (url: string) => { |
nothing calls this directly
no outgoing calls
no test coverage detected