(message)
| 8 | const sourceAssetMinimum = 512 * 1024; |
| 9 | |
| 10 | const fail = (message) => { |
| 11 | // oxlint-disable-next-line executor/no-try-catch-or-throw, executor/no-error-constructor -- boundary: build assertion script reports a failed artifact contract |
| 12 | throw new Error(message); |
| 13 | }; |
| 14 | |
| 15 | const fileSize = (dir, name) => statSync(join(dir.pathname, name)).size; |
| 16 |
no outgoing calls
no test coverage detected