(fileName)
| 175 | ); |
| 176 | |
| 177 | const gzipFile = async (fileName) => |
| 178 | await promises.writeFile( |
| 179 | `${fileName}.gz`, |
| 180 | gzipSync(await promises.readFile(fileName, UTF8), {level: 9}), |
| 181 | ); |
| 182 | |
| 183 | const copyPackageFiles = async (forProd = false) => { |
| 184 | const mins = forProd ? [null, 'min'] : [null]; |
no outgoing calls
no test coverage detected
searching dependent graphs…