pruttned / owl-bt

owl-bt is editor for Behavior trees. It has been inspired by Unreal engine behavior trees in a way, that it supports special node items like decorators and services. This makes trees smaller and much more readable.
174 stars 28 forks source link

Error on npm install #25

Closed rubenwardy closed 4 years ago

rubenwardy commented 4 years ago

I installed owl-bt from npm originally, and that worked fine.

Now, I'm attempting to get a development version running so I can make some simple pull requests.

I did the following

# installed ruby, ruby-sass, and bootstrap-sass systemwide
npm install

I get the following error:

 Warning: Error: File to import not found or unreadable: bootstrap-sass/assets/stylesheets/bootstrap.
           Load paths:
             /home/user/dev/owl-bt/src/client/bower_components
             /home/user/dev/owl-bt/src/client/app
             /home/user/dev/owl-bt/src/client/components
            on line 4 of src/client/app/app.scss

versions:

pruttned commented 4 years ago

Hi, you need to install bower packages. I've added bower as a local dependency in the last commit. You are able to run it using

npx bower install

I have also replaced grunt-contrib-sass with grunt-sass, so you don't need to have ruby installed anymore. Just remember to reinstall node modules.

pruttned commented 4 years ago

After that also run

npm run build
rubenwardy commented 4 years ago

Cool thanks, I can confirm that works!