yui3-seed
YUI 3 seed files to use it with bower.
Installation instruction:
bower install yui3-seed
Read more on how to use YUI3 seed files
Example:
<script src="[bower_components_directory]/yui3-seed/yui-min.js"></script>
<script>
YUI({
modules : {
'your-optional-custom-module' : {
fullpath : 'path/to/module.js'
}
}
}).use('your-optional-custom-module', function(Y){
// Your code goes here
});
</script>