From 8b3ee60bdcf62cc833ba05f9f78e76c5afbe8449 Mon Sep 17 00:00:00 2001 From: Mo Bitar Date: Sun, 23 Sep 2018 17:43:43 -0500 Subject: [PATCH] Build command --- README.md | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 2675ab71b..0f08c783d 100644 --- a/README.md +++ b/README.md @@ -60,9 +60,6 @@ This repo contains the core code used in the web app, as well as the Electron-ba **Instructions:** 1. Clone the repo -1. `bundle install` -1. `npm install` -1. `bundle exec rake bower:install` 1. `npm run build` 1. `rails s` diff --git a/package.json b/package.json index 283d58241..541caa4cd 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "url": "https://github.com/standardnotes/web" }, "scripts": { - "build": "grunt", + "build": "bundle install && npm install && bundle exec rake bower:install && grunt", "submodules": "git submodule update --init --force --remote", "test": "karma start karma.conf.js --single-run" },