1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-13 08:55:56 +00:00

added the required changes before merge

This commit is contained in:
Lasse Borly
2016-09-19 23:10:56 +02:00
parent 0690216222
commit efddfd31ee
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ Create authentic looking D&D homebrews using only markdown. Check it out [here](
1. Clone down the repo 1. Clone down the repo
1. In your terminal, head to the repo 1. In your terminal, head to the repo
1. Run `npm install` to get all the dependencies 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` 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 2. Any changes to files within the project will be detected and the project will automatically re-build

View File

@@ -3,9 +3,10 @@
"description": "Create authentic looking D&D homebrews using only markdown", "description": "Create authentic looking D&D homebrews using only markdown",
"version": "2.3.0", "version": "2.3.0",
"scripts": { "scripts": {
"build": "node_modules/.bin/gulp fresh", "build": "node_modules/.bin/gulp prod",
"watch": "node_modules/.bin/gulp", "watch": "node_modules/.bin/gulp",
"postinstall": "gulp prod", "libs": "node_modules/.bin/gulp fresh",
"postinstall": "npm run build",
"start": "node server.js" "start": "node server.js"
}, },
"author": "stolksdorf", "author": "stolksdorf",