From c0e963810914eaf2085555e42906ee790ae6135b Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Wed, 3 Dec 2014 17:28:21 +0100 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9eb53c0a3..38f9ae8df 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,4 +46,23 @@ Never prepend "/images/" when using image_path or image_tag. Also for the CDN, always use cwd-relative paths rather than root-relative paths in image URLs in any CSS. So instead of url('/images/blah.gif'), use url('../images/blah.gif'). -Thanks, Knut Sveidqvist \ No newline at end of file +# Build instructions +Fork, then: + +``` +npm install +``` + +Then the dependencies will have been installed. You use gulp as build tool. + +The following targets are probably interesting: + +* jison - compiles the jison grammars to parser files +* jasmine - runs the jasmine tests (will trigger the jison target) +* dist - complies files to the dist catalog + +for instance: +``` +gulp jasmine +``` +Thanks, Knut Sveidqvist