Skip to content

Commit

Permalink
fix(grunt:injector): sort js/ts modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed Mar 9, 2016
1 parent 221f7a4 commit fe6aba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/Gruntfile(grunt).js
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ module.exports = function (grunt) {
return '<script src="' + filePath + '"></script>';
},
sort: function(a, b) {
var module = /\.module\.js$/;
var module = /\.module\.(js|ts)$/;
var aMod = module.test(a);
var bMod = module.test(b);
// inject *.module.js first
Expand Down

0 comments on commit fe6aba2

Please sign in to comment.