From efddfd31ee3e18a85a07bae0435e06fde764bea7 Mon Sep 17 00:00:00 2001 From: Lasse Borly Date: Mon, 19 Sep 2016 23:10:56 +0200 Subject: [PATCH] added the required changes before merge --- README.md | 2 +- package.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c31801..38e3d94 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Create authentic looking D&D homebrews using only markdown. Check it out [here]( 1. Clone down the repo 1. In your terminal, head to the repo 1. Run `npm install` to get all the dependencies -1. Run `npm run build`, this will compile and build all the needed libraries (this only has to be done once, unless you add more libs) +1. Run `npm run libs`, this will compile and build all the needed libraries (this only has to be done once, unless you add more libs) 1. Run `npm run watch` to run the project locally. Should be accessible at `localhost:8000` 2. Any changes to files within the project will be detected and the project will automatically re-build diff --git a/package.json b/package.json index d740098..ce2c482 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,10 @@ "description": "Create authentic looking D&D homebrews using only markdown", "version": "2.3.0", "scripts": { - "build": "node_modules/.bin/gulp fresh", + "build": "node_modules/.bin/gulp prod", "watch": "node_modules/.bin/gulp", - "postinstall": "gulp prod", + "libs": "node_modules/.bin/gulp fresh", + "postinstall": "npm run build", "start": "node server.js" }, "author": "stolksdorf",