Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Help building Harlowe

I've downloaded the latest source for Harlowe and I'm trying to compile it. It seems it's no longer using grunt and is now using make to manage compilation.

So is there any documentation anywhere on how to build Harlowe using the new make system?

At the moment I'm getting an error saying it can't find 'node_modules/.bin/r.js'

Comments

  • edited September 2015
    Did you run npm beforehand to install the deps?
    npm install
    
    For some reason, chalk isn't listed in the package.json even though it's necessary, so you'll have to install it separately.
    npm install chalk
    
    Once both of those are done, you should be able to run make.
    make clean all
    
  • That was it, I hadn't run npm.
    Thanks, it's now building correctly.
Sign In or Register to comment.