Closed davidpadbury closed 13 years ago
I've added support for regular expressions in the file lists in addition to the existing wildcard. Files will be inserted in the correct order - for example below it'll drop in util first, then all files beginning with jquery, then app.js.
'example.js': { route: /\/static\/example.js/, path: './public/js/', dataType: 'js', files: [ 'util.js', /^jquery*/, 'app.js' ] },
I've added support for regular expressions in the file lists in addition to the existing wildcard. Files will be inserted in the correct order - for example below it'll drop in util first, then all files beginning with jquery, then app.js.