From 86549d3d4880128b737ea5bc0f9ebb2e2640b154 Mon Sep 17 00:00:00 2001 From: Travis Horn Date: Fri, 26 Oct 2018 15:42:01 -0500 Subject: [PATCH] Fix #2210 (#2259) Changed the example command for Mithril Bundler to be more consistent with Webpack quick start. --- docs/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index 5689bc25..0c2625d0 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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" } } ```