elving / brunch-with-hipsters

Brunch with Hipsters is a rad Brunch app skeleton that comes with unicorns out of the box.
112 stars 20 forks source link

Strange Error #15

Closed nbunney closed 9 years ago

nbunney commented 9 years ago

I am a brunch newbie but think this one is strange.

$ brunch b

events.js:72 throw er; // Unhandled 'error' event ^ Error: ENOTDIR, open '/.../vendor/autoload.php/bower.json'

Does it think that /vendor/autoload.php is a directory that it should look for bower.json inside of? This has me a little amazed.

My config.coffee is: exports.config =

See docs at http://brunch.readthedocs.org/en/latest/config.html.

conventions: ignored: /^(vendor.*.less|.+nodemodules.+|.+.+..+)$/ modules: definition: false wrapper: false paths: public: '_public' files: javascripts: joinTo: 'js/app.js': /^app/ 'js/vendor.js': /^vendor/ order: before: [ 'vendor/console-polyfill/index.js' ]

stylesheets:
  joinTo:
    'css/app.css' : /^(app|vendor)/

templates:
  joinTo:
    'js/templates.js': /.+\.jade$/

plugins: jade: options: pretty: yes # Adds pretty-indentation whitespaces to output (false by default)

bower:
  extend:
    "bootstrap" : 'vendor/bootstrap/docs/assets/js/bootstrap.js'
    "angular-mocks": []
    "styles": []
  asserts:
    "img" : /bootstrap(\\|\/)img/
    "font": /font-awesome(\\|\/)font/

I started with brunch new gh:GulinSS/brunch-bower-site .

Any help appreciated