File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ var files = [
2121var PRELUDE = '(function(){\n' ;
2222var POSTLUDE = '\n}());\n' ;
2323var FACADES = fs . readFileSync ( __dirname + '/lib/facades.es5' , 'utf8' ) ;
24- var DIRECTIVES = fs . readFileSync ( __dirname + '/src/ng_outlet.js ' , 'utf8' ) ;
24+ var DIRECTIVES = fs . readFileSync ( __dirname + '/src/ng_outlet.ts ' , 'utf8' ) ;
2525var moduleTemplate = fs . readFileSync ( __dirname + '/src/module_template.js' , 'utf8' ) ;
2626
2727function main ( ) {
@@ -31,7 +31,7 @@ function main() {
3131 } , '' ) ;
3232
3333 var out = moduleTemplate . replace ( '//{{FACADES}}' , FACADES ) . replace ( '//{{SHARED_CODE}}' , sharedCode ) ;
34- return PRELUDE + DIRECTIVES + out + POSTLUDE ;
34+ return PRELUDE + transform ( DIRECTIVES ) + out + POSTLUDE ;
3535}
3636
3737/*
File renamed without changes.
You can’t perform that action at this time.
0 commit comments