Skip to content

Commit 6d54ce8

Browse files
Bump version to 4.0.8 and LKG
1 parent 72eaadc commit 6d54ce8

8 files changed

+153
-56
lines changed

lib/tsc.js

+20-9
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "4.0";
70-
ts.version = "4.0.7";
70+
ts.version = "4.0.8";
7171
var NativeCollections;
7272
(function (NativeCollections) {
7373
function tryGetNativeMap() {
@@ -3516,8 +3516,8 @@ var ts;
35163516
},
35173517
getFileSize: function (path) {
35183518
try {
3519-
var stat = _fs.statSync(path);
3520-
if (stat.isFile()) {
3519+
var stat = statSync(path);
3520+
if (stat === null || stat === void 0 ? void 0 : stat.isFile()) {
35213521
return stat.size;
35223522
}
35233523
}
@@ -3562,6 +3562,9 @@ var ts;
35623562
}
35633563
};
35643564
return nodeSystem;
3565+
function statSync(path) {
3566+
return _fs.statSync(path, { throwIfNoEntry: false });
3567+
}
35653568
function enableCPUProfiler(path, cb) {
35663569
if (activeSession) {
35673570
cb();
@@ -3607,19 +3610,20 @@ var ts;
36073610
if (activeSession && activeSession !== "stopping") {
36083611
var s_1 = activeSession;
36093612
activeSession.post("Profiler.stop", function (err, _a) {
3613+
var _b;
36103614
var profile = _a.profile;
36113615
if (!err) {
36123616
try {
3613-
if (_fs.statSync(profilePath).isDirectory()) {
3617+
if ((_b = statSync(profilePath)) === null || _b === void 0 ? void 0 : _b.isDirectory()) {
36143618
profilePath = _path.join(profilePath, (new Date()).toISOString().replace(/:/g, "-") + "+P" + process.pid + ".cpuprofile");
36153619
}
36163620
}
3617-
catch (_b) {
3621+
catch (_c) {
36183622
}
36193623
try {
36203624
_fs.mkdirSync(_path.dirname(profilePath), { recursive: true });
36213625
}
3622-
catch (_c) {
3626+
catch (_d) {
36233627
}
36243628
_fs.writeFileSync(profilePath, JSON.stringify(cleanupPaths(profile)));
36253629
}
@@ -3808,7 +3812,10 @@ var ts;
38083812
if (typeof dirent === "string" || dirent.isSymbolicLink()) {
38093813
var name = ts.combinePaths(path, entry);
38103814
try {
3811-
stat = _fs.statSync(name);
3815+
stat = statSync(name);
3816+
if (!stat) {
3817+
continue;
3818+
}
38123819
}
38133820
catch (e) {
38143821
continue;
@@ -3839,7 +3846,10 @@ var ts;
38393846
var originalStackTraceLimit = Error.stackTraceLimit;
38403847
Error.stackTraceLimit = 0;
38413848
try {
3842-
var stat = _fs.statSync(path);
3849+
var stat = statSync(path);
3850+
if (!stat) {
3851+
return false;
3852+
}
38433853
switch (entryKind) {
38443854
case 0: return stat.isFile();
38453855
case 1: return stat.isDirectory();
@@ -3871,8 +3881,9 @@ var ts;
38713881
}
38723882
}
38733883
function getModifiedTime(path) {
3884+
var _a;
38743885
try {
3875-
return _fs.statSync(path).mtime;
3886+
return (_a = statSync(path)) === null || _a === void 0 ? void 0 : _a.mtime;
38763887
}
38773888
catch (e) {
38783889
return undefined;

lib/tsserver.js

+27-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tsserverlibrary.js

+26-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/typescript.js

+26-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)