From 5740b4fc52e45d93609dae72622ee6572ef77d0f Mon Sep 17 00:00:00 2001 From: Brian Gershon Date: Fri, 14 Dec 2018 22:33:16 -0800 Subject: [PATCH] Update README --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6857ba..0e4ddcc 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ -# Simple Front-end Starter +# react-minimal React with minimal dependencies and tools. -* Styling with default fonts that look great across operating systems. - -* A development environment with - * Lint (via ESLint with Airbnb style) - * Support for es6 modules and hot reloading (via Parse Bundler) - * Unit tests (via Jest) +* Includes a development environment with: + * Support for es6 modules and hot reloading (via Parcel Bundler) * Compile to es5 to run across a wide range of browsers (via Babel) + * Unit tests (via Jest) + * Lint (via ESLint Airbnb style) + +* Styling with default fonts that look great across operating systems. -## Run the starter project +## Run Local Dev Server npm install # install dependencies npm start # visit http://localhost:1234 -## Test it +## Run Tests npm test -## Package it up in dist folder +## Package project up in dist folder for release to server npm run build