Changed the example command for Mithril Bundler to be more consistent with Webpack quick start.
This commit is contained in:
Travis Horn 2018-10-26 15:42:01 -05:00 committed by Isiah Meadows
parent b1f1a2b94b
commit 86549d3d48

View file

@ -232,7 +232,7 @@ If you want to try it and give feedback, you can open `package.json` and change
{
"name": "my-project",
"scripts": {
"build": "bundle index.js --output app.js --watch"
"build": "bundle src/index.js --output bin/app.js --watch"
}
}
```