From a453bb4f53ec87d056a368f5e020e881c9706b56 Mon Sep 17 00:00:00 2001 From: Denis Date: Wed, 20 Sep 2017 16:29:48 -0400 Subject: [PATCH] Update README.md Updates based on rollup warning messages. ``` options.entry is now options.input options.dest is now options.output.file options.format is now options.output.format ``` --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b7a9fbb..4a446f7 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,11 @@ import commonjs from 'rollup-plugin-commonjs'; import nodeResolve from 'rollup-plugin-node-resolve'; export default { - entry: 'main.js', - dest: 'bundle.js', - format: 'iife', + input: 'main.js', + output: { + file: 'bundle.js', + format: 'iife' + }, plugins: [ nodeResolve({ jsnext: true,