sbt / sbt-rjs

RequireJs optimizer plugin for sbt-web
Other
39 stars 28 forks source link

hasjs is ignored #55

Open mzafer opened 9 years ago

mzafer commented 9 years ago

I am using hasjs for some conditional logic and I noticed that the 'has' config is being ignored. Below is my build.js file. Any idea how I can have hasjs working.

requirejs.config({ 
    'paths': { 
        "underscore": "libs/underscore/Underscore-1.6.0", 
         "has":"libs/misc/has"
    },
    has: {
        dev: false,
        mixpanel:true
    },
    modules: "main",
});