From 1180d77a4d3d86f10bfa857284e5e80c78c16e68 Mon Sep 17 00:00:00 2001 From: Enieber Cunha Date: Sat, 2 Apr 2016 12:53:24 -0300 Subject: [PATCH] Update 05-using-rollup-with-npm.md --- src/guide/05-using-rollup-with-npm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/05-using-rollup-with-npm.md b/src/guide/05-using-rollup-with-npm.md index 289fcb1..d5f34a3 100644 --- a/src/guide/05-using-rollup-with-npm.md +++ b/src/guide/05-using-rollup-with-npm.md @@ -51,7 +51,7 @@ To run, create one script in package.json ```js "scripts": { - "build": "node_modules/rollup/bin/rollup src/main.js --output bundle.js" + "build": "rollup src/main.js --output bundle.js" } ```