Skip to content

Commit fe6aba2

Browse files
committed
fix(grunt:injector): sort js/ts modules
1 parent 221f7a4 commit fe6aba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/Gruntfile(grunt).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ module.exports = function (grunt) {
719719
return '<script src="' + filePath + '"></script>';
720720
},
721721
sort: function(a, b) {
722-
var module = /\.module\.js$/;
722+
var module = /\.module\.(js|ts)$/;
723723
var aMod = module.test(a);
724724
var bMod = module.test(b);
725725
// inject *.module.js first

0 commit comments

Comments
 (0)