Skip to content
This repository was archived by the owner on Sep 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ together is all it takes to move versions.

5. Open the local dev server in your browser and upload the generated `stats.json` file.

The upload dialog also carries example stats files, one per webpack version
from 1 to 5. They are in [`app/pages/upload/`](app/pages/upload) and are
enough to look around the app before generating a file of your own.

## Available scripts

```bash
Expand All @@ -86,9 +90,9 @@ npm test

Runs the unit tests in [`test/`](test). They check the circular dependency
detection against [`app/pages/upload/example3.json`](app/pages/upload/example3.json),
a small hand-written stats file that covers every hint of the hints page and is
loadable in the app as the "hint test cases" example. CI runs this before the
build, so a failing test stops the run and nothing is deployed.
a small hand-written stats file that covers every hint of the hints page. CI
runs this before the build, so a failing test stops the run and nothing is
deployed.

## Docker

Expand Down
4 changes: 3 additions & 1 deletion app/pages/upload/application.pug
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ nav.navbar.navbar-default
.form-group
label(for="example") Examples
div: button(type="btn btn-default", id="example1") webpack 1 test cases
div: button(type="btn btn-default", id="example4") webpack 2 test cases
div: button(type="btn btn-default", id="example5") webpack 3 test cases
div: button(type="btn btn-default", id="example6") webpack 4 test cases
div: button(type="btn btn-default", id="example2") webpack 5 test cases
div: button(type="btn btn-default", id="example3") hint test cases
.modal-footer
Loading