Created
September 20, 2012 13:29
-
-
Save earnubs/3755919 to your computer and use it in GitHub Desktop.
YUI config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
YUI({ | |
comboBase: '/yui3?', | |
combine: true, | |
root: 'build/', | |
groups: { | |
contrib: { | |
comboBase: '/yui3-contrib?', | |
combine: true, | |
// explicitly list the modules and deps, this improves combohandler bundling of | |
// script requests | |
patterns: { | |
'my-': {}, | |
'mycss-': { type: 'css' } | |
} | |
} | |
} | |
}).use('widget', 'my-module-bar', function (Y) { | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment