(str: string)
| 75 | }; |
| 76 | |
| 77 | const kebab = (str: string) => str.replace(/[A-Z]/g, (l) => `-${l.toLowerCase()}`); |
| 78 | |
| 79 | /** |
| 80 | * Create the `BuildConfig` from the process args, and set the absolute paths the build will be |
no outgoing calls
no test coverage detected
searching dependent graphs…