Naming convention for UI ext files

Naming convention for UI ext files


I have an app that concatenates all of my jQuery plugin files into one
file (using Ant concat). The order of concatenation is based on the
filename, and I ran into a problem where I was getting an error:
$.ui[module] has no properties
A quick search and I see that there is already a <a href='http://
dev.jquery.com/ticket/2115'>bug</a> submitted about this error.
In my case, the problem was due to ui.sortable.ext.js being added to
the file before ui.sortable.js because of the way the files were
concatenated.
To prevent this issue in an environment like mine, what are the
thoughts of changing the ext filenames to something like: ui.sortable-
ext.js? Any other ideas? I know I can make changes on my end to "fix"
the concatenation issue, but just wanted to find out what others
think.
-Eric