mirror of
https://github.com/status-im/sourcecred.git
synced 2025-02-13 13:06:32 +00:00
Summary: Webpack will fail (quickly) if any required entry points do not exist. The `scripts/backend.js` script superfluously checks this, too. This patch removes that check. Test Plan: In `config/paths.js`, change `src/cli/main.js` to `src/cli/wat.js`. Then, `yarn backend`, and note that Webpack fails quickly, with an error “entry module not found”. Note that Webpack fails equally quickly if you change the path of the last entry point rather than the first one. wchargin-branch: backend-remove-exists-check