This is an answer to https://twitter.com/tinkeraway/status/701746408072855552:
Calling npm run foo -- [something]
just calls whatever is defined under the foo
script and adds [something]
to the end.
So if you have this in your scripts
:
{
"foo": "webpack"
}