(dependencies: Record<string, string>)
| 303 | const pkg: Package = require(path.join(projectRoot, 'app', 'package.json')) |
| 304 | |
| 305 | const filterExternals = (dependencies: Record<string, string>) => |
| 306 | Object.fromEntries( |
| 307 | Object.entries(dependencies).filter(([k]) => externals.includes(k)) |
| 308 | ) |
| 309 | |
| 310 | // The product name changes depending on whether it's a prod build or dev |
| 311 | // build, so that we can have them running side by side. |
no test coverage detected