@@ -69,6 +69,9 @@ gulp.task("test-definitely-typed", function(callback)
69
69
[
70
70
[ "node_modules/typescript/lib/lib.d.ts" ] ,
71
71
[ "node_modules/typescript/lib/lib.es6.d.ts" ] ,
72
+ [ "node_modules/typescript/lib/lib.es7.d.ts" ] ,
73
+ [ "node_modules/typescript/lib/typescript.d.ts" ] ,
74
+ [ "node_modules/typescript/lib/typescriptServices.d.ts" ] ,
72
75
[
73
76
"../DefinitelyTyped/createjs-lib/createjs-lib.d.ts" ,
74
77
"../DefinitelyTyped/tweenjs/tweenjs.d.ts" ,
@@ -81,21 +84,33 @@ gulp.task("test-definitely-typed", function(callback)
81
84
[ "../DefinitelyTyped/box2d/box2dweb.d.ts" ] ,
82
85
[ "../DefinitelyTyped/chartjs/chart.d.ts" ] ,
83
86
[ "../DefinitelyTyped/commonmark/commonmark.d.ts" ] ,
87
+ [ "../DefinitelyTyped/facebook-js-sdk/facebook-js-sdk.d.ts" ] ,
84
88
[ "../DefinitelyTyped/firebase/firebase.d.ts" ] ,
85
89
[ "../DefinitelyTyped/fbsdk/fbsdk.d.ts" ] ,
86
90
[ "../DefinitelyTyped/google.analytics/ga.d.ts" ] ,
87
91
[ "../DefinitelyTyped/greensock/greensock.d.ts" ] ,
92
+ [ "../DefinitelyTyped/gruntjs/gruntjs.d.ts" ] ,
88
93
[ "../DefinitelyTyped/handlebars/handlebars.d.ts" ] ,
89
94
[ "../DefinitelyTyped/history/history.d.ts" ] ,
90
95
[ "../DefinitelyTyped/humane/humane.d.ts" ] ,
96
+ [ "../DefinitelyTyped/ionic/ionic.d.ts" ] ,
91
97
[ "../DefinitelyTyped/jade/jade.d.ts" ] ,
92
98
[ "../DefinitelyTyped/jquery/jquery.d.ts" ] ,
99
+ [
100
+ //jquery ui modifies jquery types, so they must be
101
+ //compiled together
102
+ "../DefinitelyTyped/jquery/jquery.d.ts" ,
103
+ "../DefinitelyTyped/jqueryui/jqueryui.d.ts"
104
+ ] ,
93
105
[ "../DefinitelyTyped/less/less.d.ts" ] ,
94
106
[ "../DefinitelyTyped/marked/marked.d.ts" ] ,
107
+ [ "../DefinitelyTyped/mkdirp/mkdirp.d.ts" ] ,
95
108
[ "../DefinitelyTyped/mocha/mocha.d.ts" ] ,
96
109
[ "../DefinitelyTyped/minimist/minimist.d.ts" ] ,
97
110
[ "../DefinitelyTyped/mustache/mustache.d.ts" ] ,
98
- //["../DefinitelyTyped/node/node.d.ts"],
111
+ [ "../DefinitelyTyped/node/node.d.ts" ] ,
112
+ [ "../DefinitelyTyped/node-webkit/node-webkit.d.ts" ] ,
113
+ [ "../DefinitelyTyped/onsenui/onsenui.d.ts" ] ,
99
114
[ "../DefinitelyTyped/page/page.d.ts" ] ,
100
115
[ "../DefinitelyTyped/pdf/pdf.d.ts" ] ,
101
116
[ "../DefinitelyTyped/pixi.js/pixi.js.d.ts" ] ,
@@ -133,7 +148,7 @@ function run_dts2as(files, callback)
133
148
console . error ( "Apache FlexJS SDK not found: " + flexHome ) ;
134
149
process . exit ( 1 ) ;
135
150
}
136
- child_process . exec ( "node " + path . join ( "bin" , "cli.js" ) + " --flexHome " + flexHome + " --target ES6 --outSWC " + path . join ( "dts2astests_temp" , "test.swc" ) + " " + files . join ( " " ) ,
151
+ child_process . exec ( "node " + path . join ( "bin" , "cli.js" ) + " --flexHome " + flexHome + " --target ES6 --outDir dts2astests_temp -- outSWC " + path . join ( "dts2astests_temp" , "test.swc" ) + " " + files . join ( " " ) ,
137
152
{ } ,
138
153
function ( error )
139
154
{
0 commit comments