Brunch is a lightweight build system for web applications.

learn more… | top users | synonyms

1
vote
2answers
571 views

backbone.validation integration with brunch.io( backbone.js framework)

How to intergrate http://thedersen.github.com/backbone.validation/ with brunch.io i tried putting backbone.validation.js in vendor folder and View = require './view' template = require ...
1
vote
1answer
206 views

Using external mustache partials in a brunch.io project

I am working on a project that uses brunch.io and mustache for templating. I want to add mustache partials to the main index (which serves as a 'shell') to load in my content. I create the mustache ...
1
vote
1answer
361 views

Issue attempting to run Brunch localhost with

I have installed Brunch into my working directory as well as Coffee Script. Installation went over fine. When I try to run the local server with: gorteks$ brunch watch --server I get: [Brunch]: ...
0
votes
1answer
18 views

require all templates including files with underscores

With brunch, I can require all files in a folder like this require('/templates/'); But that does not cover files with underscores, I still need to require them like this: ...
0
votes
1answer
61 views

Debug brunch.io with coffee sourcemaps?

I was wondering how to debug my brunch.io (ember) app with sourcemaps? My sourcemaps are beeing generated by IntelliJ Webstorm – but how do i use these together with the brunch.io build process?
0
votes
1answer
630 views

Node.js - “Uncaught Error: Cannot find module ”redis“”

I'm trying to build a simple "Twitter" style short messaging app in Node.js which uses Redis as the database (although I've heard that MongoDB might be easier)... I have found a few links that point ...
2
votes
0answers
18 views

How to prevent caching on brunch watch -s

I'm building an ember application and have found that I constantly need to restart the brunch watch -s command, to have my application updated. While brunch recompiles on every change, the changes ...
1
vote
0answers
72 views

Using Pre-Compiled Templates with Sammy

Sammy has a lot of features for working with template languages. However, when working with brunch, the server pre-compiles all the templates for me, which is very much desired. So they're all ...
0
votes
0answers
36 views

how do i configure my ember brunch application for testing with testacular/karma?

i've been using brunch with ember https://github.com/fuseelements/ember-brunch-skeleton and now i'm trying to get unit tests happening with testacular/karma (testacular recently was renamed to karma) ...
0
votes
0answers
15 views

Why do I get “TypeError: Cannot assign to read only property 'except' of [object Object]” when using uglify-js-brunch?

When using uglify-js-brunch with the following configuration (from config.coffee): exports.config = plugins: uglify: mangle: except: [ "require" ] With the following command ...
0
votes
0answers
60 views

How to organize Backbone.Marionette Application with brunch in RequireJS style?

Is it possible to organize Backbone.Marionette Application with brunch in RequireJS style? Maybe the specific skeleton for brunch exists for creating new project in this manner?
0
votes
0answers
35 views

ENOTEMPTY error when creating project with skeleton on Brunch

I'm on windows...when I create a project with brunch new projectname it works, but when I specify a skeleton I get this error: c:\xampp-portable\htdocs>brunch new marionette --skeleton ...
0
votes
0answers
51 views

Testing a Brunched app using Mocha and including shims

I'm trying to test my Brunch+Backbone application using Mocha A Mocha spec that requires various devDependencies works fine. A Mocha spec that requires my devDependencies and modules from my app ...
0
votes
0answers
241 views

jquery.fileupload doesn't work properly when packaging with brunch

I realize this is somewhat of a vague question. I'm using Brunch to package my Ember application. I'm using blueimp's jquery.fileupload ui widget in that app. When packaged with brunch, the ...
0
votes
0answers
162 views

jQuery ajax parsererror with valid dataTypes and 200 response

I am sending and ajax request (backbone.model save) to my API built with ExpressJS. This is a cross domain request and everything works in that regards. The problem is that I receive a 200 response ...
0
votes
0answers
84 views

brunch.io and datatables tooltables

I am using jquery datatables plug in with tabletools in a brunch.io framework. I am initializing my dataTable as follows: $('.table-container').dataTable( ...