(from, to)
| 25 | } |
| 26 | |
| 27 | const copyFile = (from, to) => { |
| 28 | _fs.mkdirSync(_path.dirname(to), { recursive: true }) |
| 29 | _fs.copyFileSync(from, to) |
| 30 | } |
| 31 | |
| 32 | const ignoredPublishFile = (path) => { |
| 33 | const parts = path.split("/") |
no outgoing calls
no test coverage detected
searching dependent graphs…