Skip to content

Commit

Permalink
Fix client JS concat order (TypeStrong#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdelmas authored and blakeembrey committed May 12, 2017
1 parent c7f16d9 commit e75a7e6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ module.exports = function(grunt)
basePath: 'themes',
declaration: false
},
src: ['src/default/assets/js/src/**/*.ts'],
src: [
'src/default/assets/js/src/lib/**/*.ts',
'src/default/assets/js/src/typedoc/Application.ts',
'src/default/assets/js/src/typedoc/components/**/*.ts',
'src/default/assets/js/src/typedoc/services/**/*.ts',
'src/default/assets/js/src/typedoc/utils/**/*.ts',
'src/default/assets/js/src/~bootstrap.ts'
],
out: 'src/default/assets/js/main.js'
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/default/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ var typedoc;
typedoc.Application = Application;
})(typedoc || (typedoc = {}));
var typedoc;
(function (typedoc) {
typedoc.app = new typedoc.Application();
})(typedoc || (typedoc = {}));
var typedoc;
(function (typedoc) {
var FilterItem = (function () {
function FilterItem(key, value) {
Expand Down Expand Up @@ -820,3 +816,7 @@ var typedoc;
}
typedoc.animateHeight = animateHeight;
})(typedoc || (typedoc = {}));
var typedoc;
(function (typedoc) {
typedoc.app = new typedoc.Application();
})(typedoc || (typedoc = {}));

0 comments on commit e75a7e6

Please sign in to comment.