From 09f885f88f2f57c116460d018570c867d86abc8f Mon Sep 17 00:00:00 2001 From: Will King Date: Mon, 9 Sep 2019 08:19:53 -0500 Subject: [PATCH] Website updates --- www/src/pages/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/src/pages/index.js b/www/src/pages/index.js index d952540..3f819e1 100644 --- a/www/src/pages/index.js +++ b/www/src/pages/index.js @@ -24,21 +24,21 @@ const IndexPage = ({ location }) => {

# Installation

-

The new version of elm-live is currently in testing so you will need to install it using one of the commands below.

+

Install the latest version of elm-live using one of the commands below.

           # Using NPM
-          npm install elm-live@next --save-dev
+          npm install elm-live
            
           # Using Yarn
-          yarn add elm-live@next --dev
+          yarn add elm-live
         
-

If you would like to install the older version you can use one of the commands below.

+

If you need elm-live for Elm 0.18 you can install it using the following command:

           # Using NPM
-          npm install elm-live --save-dev
+          npm install elm-live@prev --save-dev
            
           # Using Yarn
-          yarn add elm-live --dev
+          yarn add elm-live@prev --dev
         

# Getting Started