Jonathan
Jonathan

Reputation: 3034

Error when building brunch with banana pancakes

I created a brunch project with the banana pancakes skeleton

brunch new brunchtest -s github://Anaphase/brunch-banana-pancakes

Then when building I get an error

cd brunchtest
brunch build

 -> error: { [Error: Cannot find module '/media/sf_C_DRIVE/wamp/www/test/brunchtest/node_modules/clean-css-brunch'] code: 'MODULE_NOT_FOUND' }

So its obvious that some modules are missing but why? The strange part is that when I create the project I see that these modules are downloaded and put into node_modules but then they are removed during the creation process and only these remain:

enter image description here

Here's the whole npm-debug.log file, I see there are some errors but I don't know what they mean http://pastebin.com/E4eMFeiC

Update Here's a screenshot of the installation process errors (which should be in the logfile but I guess this is more convenient)

enter image description here

Upvotes: 4

Views: 255

Answers (1)

trojjer
trojjer

Reputation: 639

As per MrAzulay's comment, there's a security setting in Virtualbox that disables symlinking. He says he's had success with the following command, which I haven't tested:

VBoxManage setextradata VM_NAME VBoxInternal2/SharedFoldersEnableSymlinksCreate 1

Upvotes: 1

Related Questions