From: Intransition Date: 2011-08-25T00:38:51+09:00 Subject: Conventions for reusable component assets What conventions have evolved for placing reusable website assets in a project? Do people just mix in all a components assets in with the other assets, cp -r foo/assets/images/* mysite/assets/images/ cp -r foo/assets/stylesheets/* mysite/assets/stylesheets/ ... Or do they keep the component intact. cp -r foo mysite/assets/ Or a subdirectory maybe? cp -r foo mysite/assets/libraries/ How are other handling this?