Skip to content

Commit 4a8486f

Browse files
committed
Remove dependency on tsd, Related to #9658
1 parent f9d2937 commit 4a8486f

File tree

3 files changed

+2
-21
lines changed

3 files changed

+2
-21
lines changed

Jakefile.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -466,14 +466,8 @@ task("publish-nightly", ["configure-nightly", "LKG", "clean", "setDebugMode", "r
466466
exec(cmd);
467467
});
468468

469-
var scriptsTsdJson = path.join(scriptsDirectory, "tsd.json");
470-
file(scriptsTsdJson);
471-
472-
task("tsd-scripts", [scriptsTsdJson], function () {
473-
var cmd = "tsd --config " + scriptsTsdJson + " install";
474-
console.log(cmd);
475-
exec(cmd);
476-
}, { async: true });
469+
var scriptsTypingsJson = path.join(scriptsDirectory, "typings.json");
470+
file(scriptsTypingsJson);
477471

478472
var importDefinitelyTypedTestsDirectory = path.join(scriptsDirectory, "importDefinitelyTypedTests");
479473
var importDefinitelyTypedTestsJs = path.join(importDefinitelyTypedTestsDirectory, "importDefinitelyTypedTests.js");

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
"run-sequence": "latest",
7171
"through2": "latest",
7272
"ts-node": "latest",
73-
"tsd": "latest",
7473
"tslint": "next",
7574
"typescript": "next"
7675
},

scripts/tsd.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)