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