I can successfully build production.js. I have specified ignore: true in shim for all fixtures like this:
- 'app/fixtures/fixtures.js': {
ignore: true
}, - 'app/fixtures/customer.js': {
ignore: true - },
- ....
However, when I build the application in production, all these files still get loaded as seen from net console from Firebug. Why is this? In my main index.js file, I load these normally with steal:
- steal(
...
'app/fixtures/fixtures.js',
'app/fixtures/customer.js', - ....