Skip to content

Instantly share code, notes, and snippets.

@ArnaudD
Created October 6, 2011 08:55
Show Gist options
  • Save ArnaudD/1266886 to your computer and use it in GitHub Desktop.
Save ArnaudD/1266886 to your computer and use it in GitHub Desktop.
Affiche la liste des scripts yui3 à mettre dans notre assests.yml
var dependencies = [];
Y.all('script').each (function(s) {
var src = this.get('src').match(/\/javascripts\/lib\/yui-3.*\.js/);
if (src != null)
dependencies.push(' - public'+src[0]);
});
console.log(dependencies.sort().join("\n"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment