From 535dbe91f794fa78df68a479cc35349b36ebaf0c Mon Sep 17 00:00:00 2001 From: Trent Oswald Date: Fri, 12 Jun 2015 22:38:19 -0600 Subject: [PATCH 1/2] Added start script Consolidated startup commands into `npm start` --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4e32e2a..02ef01f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "scripts": { - "test": "jest && mocha --compilers js:mocha-traceur tests/**/*.spec.js" + "test": "jest && mocha --compilers js:mocha-traceur tests/**/*.spec.js", + "start": "npm install && bower install && gulp" }, "jest": { "testFileExtensions": [ From 788d10e4830b278521408b2115c52d61cfd948bb Mon Sep 17 00:00:00 2001 From: Trent Oswald Date: Fri, 12 Jun 2015 22:40:38 -0600 Subject: [PATCH 2/2] Added `npm start` to README instructions --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a4d242b..6898e02 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,9 @@ Installation > For development purposes only. -Install NPM dependencies: - +To get started, install NPM and Bower dependencies, and do an initial build with Gulp: ``` -npm install -``` - -Install Bower dependencies: - -``` -bower install +npm start ``` Run Gulp once: