ibm-js / requirejs-dplugins

AMD plugins for RequireJS
http://ibm-js.github.io/requirejs-dplugins/
Other
6 stars 9 forks source link

The build for the jquery plugin need a map config to avoid pulling sizzle. #9

Open clmath opened 9 years ago

clmath commented 9 years ago

Ideally there should be no need for additional config during the build.

Here is the config required:

require.config({
    map: {
        jquery: {
            "jquery/src/selector": "jquery/src/selector-native"     // don't pull in sizzle
        }
    }
});