Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Fixtures still loaded in production.js

$
0
0
I can successfully build production.js. I have specified ignore: true in shim for all fixtures like this:
  1. 'app/fixtures/fixtures.js': {           
                ignore: true
    },        
  2. 'app/fixtures/customer.js': {
                ignore: true
  3. },
  4. ....

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:

  1. steal(   
        ...
        'app/fixtures/fixtures.js',
        'app/fixtures/customer.js',
  2.      ....





Viewing all articles
Browse latest Browse all 3491

Trending Articles