File tree 9 files changed +39
-15
lines changed
9 files changed +39
-15
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ var ts;
132
132
})(ts || (ts = {}));
133
133
var ts;
134
134
(function (ts) {
135
- ts.version = "2.1.5 ";
135
+ ts.version = "2.1.6 ";
136
136
})(ts || (ts = {}));
137
137
(function (ts) {
138
138
var createObject = Object.create;
@@ -2256,7 +2256,7 @@ var ts;
2256
2256
},
2257
2257
watchDirectory: function (directoryName, callback, recursive) {
2258
2258
var options;
2259
- if (!directoryExists(directoryName)) {
2259
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32") ) {
2260
2260
return noOpFileWatcher;
2261
2261
}
2262
2262
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -2271,6 +2271,9 @@ var ts;
2271
2271
}
2272
2272
;
2273
2273
});
2274
+ function isUNCPath(s) {
2275
+ return s.length > 2 && s.charCodeAt(0) === 47 && s.charCodeAt(1) === 47;
2276
+ }
2274
2277
},
2275
2278
resolvePath: function (path) {
2276
2279
return _path.resolve(path);
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ var ts;
137
137
})(ts || (ts = {}));
138
138
var ts;
139
139
(function (ts) {
140
- ts.version = "2.1.5 ";
140
+ ts.version = "2.1.6 ";
141
141
})(ts || (ts = {}));
142
142
(function (ts) {
143
143
var createObject = Object.create;
@@ -2261,7 +2261,7 @@ var ts;
2261
2261
},
2262
2262
watchDirectory: function (directoryName, callback, recursive) {
2263
2263
var options;
2264
- if (!directoryExists(directoryName)) {
2264
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32") ) {
2265
2265
return noOpFileWatcher;
2266
2266
}
2267
2267
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -2276,6 +2276,9 @@ var ts;
2276
2276
}
2277
2277
;
2278
2278
});
2279
+ function isUNCPath(s) {
2280
+ return s.length > 2 && s.charCodeAt(0) === 47 && s.charCodeAt(1) === 47;
2281
+ }
2279
2282
},
2280
2283
resolvePath: function (path) {
2281
2284
return _path.resolve(path);
Original file line number Diff line number Diff line change @@ -3584,7 +3584,7 @@ declare namespace ts.performance {
3584
3584
function disable(): void;
3585
3585
}
3586
3586
declare namespace ts {
3587
- const version = "2.1.5 ";
3587
+ const version = "2.1.6 ";
3588
3588
}
3589
3589
declare namespace ts {
3590
3590
const enum Ternary {
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ var ts;
137
137
})(ts || (ts = {}));
138
138
var ts;
139
139
(function (ts) {
140
- ts.version = "2.1.5 ";
140
+ ts.version = "2.1.6 ";
141
141
})(ts || (ts = {}));
142
142
(function (ts) {
143
143
var createObject = Object.create;
@@ -2261,7 +2261,7 @@ var ts;
2261
2261
},
2262
2262
watchDirectory: function (directoryName, callback, recursive) {
2263
2263
var options;
2264
- if (!directoryExists(directoryName)) {
2264
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32") ) {
2265
2265
return noOpFileWatcher;
2266
2266
}
2267
2267
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -2276,6 +2276,9 @@ var ts;
2276
2276
}
2277
2277
;
2278
2278
});
2279
+ function isUNCPath(s) {
2280
+ return s.length > 2 && s.charCodeAt(0) === 47 && s.charCodeAt(1) === 47;
2281
+ }
2279
2282
},
2280
2283
resolvePath: function (path) {
2281
2284
return _path.resolve(path);
Original file line number Diff line number Diff line change @@ -2148,7 +2148,7 @@ declare namespace ts {
2148
2148
}
2149
2149
declare namespace ts {
2150
2150
/** The version of the TypeScript compiler release */
2151
- const version = "2.1.5 " ;
2151
+ const version = "2.1.6 " ;
2152
2152
}
2153
2153
declare namespace ts {
2154
2154
type FileWatcherCallback = ( fileName : string , removed ?: boolean ) => void ;
Original file line number Diff line number Diff line change @@ -1186,7 +1186,7 @@ var ts;
1186
1186
var ts;
1187
1187
(function (ts) {
1188
1188
/** The version of the TypeScript compiler release */
1189
- ts.version = "2.1.5 ";
1189
+ ts.version = "2.1.6 ";
1190
1190
})(ts || (ts = {}));
1191
1191
/* @internal */
1192
1192
(function (ts) {
@@ -3688,7 +3688,10 @@ var ts;
3688
3688
// Node 4.0 `fs.watch` function supports the "recursive" option on both OSX and Windows
3689
3689
// (ref: https://github.com/nodejs/node/pull/2649 and https://github.com/Microsoft/TypeScript/issues/4643)
3690
3690
var options;
3691
- if (!directoryExists(directoryName)) {
3691
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32")) {
3692
+ // do nothing if either
3693
+ // - target folder does not exist
3694
+ // - this is UNC path on Windows (https://github.com/Microsoft/TypeScript/issues/13874)
3692
3695
return noOpFileWatcher;
3693
3696
}
3694
3697
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -3707,6 +3710,9 @@ var ts;
3707
3710
}
3708
3711
;
3709
3712
});
3713
+ function isUNCPath(s) {
3714
+ return s.length > 2 && s.charCodeAt(0) === 47 /* slash */ && s.charCodeAt(1) === 47 /* slash */;
3715
+ }
3710
3716
},
3711
3717
resolvePath: function (path) {
3712
3718
return _path.resolve(path);
Original file line number Diff line number Diff line change @@ -2148,7 +2148,7 @@ declare namespace ts {
2148
2148
}
2149
2149
declare namespace ts {
2150
2150
/** The version of the TypeScript compiler release */
2151
- const version = "2.1.5 " ;
2151
+ const version = "2.1.6 " ;
2152
2152
}
2153
2153
declare namespace ts {
2154
2154
type FileWatcherCallback = ( fileName : string , removed ?: boolean ) => void ;
Original file line number Diff line number Diff line change @@ -1186,7 +1186,7 @@ var ts;
1186
1186
var ts;
1187
1187
(function (ts) {
1188
1188
/** The version of the TypeScript compiler release */
1189
- ts.version = "2.1.5 ";
1189
+ ts.version = "2.1.6 ";
1190
1190
})(ts || (ts = {}));
1191
1191
/* @internal */
1192
1192
(function (ts) {
@@ -3688,7 +3688,10 @@ var ts;
3688
3688
// Node 4.0 `fs.watch` function supports the "recursive" option on both OSX and Windows
3689
3689
// (ref: https://github.com/nodejs/node/pull/2649 and https://github.com/Microsoft/TypeScript/issues/4643)
3690
3690
var options;
3691
- if (!directoryExists(directoryName)) {
3691
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32")) {
3692
+ // do nothing if either
3693
+ // - target folder does not exist
3694
+ // - this is UNC path on Windows (https://github.com/Microsoft/TypeScript/issues/13874)
3692
3695
return noOpFileWatcher;
3693
3696
}
3694
3697
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -3707,6 +3710,9 @@ var ts;
3707
3710
}
3708
3711
;
3709
3712
});
3713
+ function isUNCPath(s) {
3714
+ return s.length > 2 && s.charCodeAt(0) === 47 /* slash */ && s.charCodeAt(1) === 47 /* slash */;
3715
+ }
3710
3716
},
3711
3717
resolvePath: function (path) {
3712
3718
return _path.resolve(path);
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ var ts;
137
137
})(ts || (ts = {}));
138
138
var ts;
139
139
(function (ts) {
140
- ts.version = "2.1.5 ";
140
+ ts.version = "2.1.6 ";
141
141
})(ts || (ts = {}));
142
142
(function (ts) {
143
143
var createObject = Object.create;
@@ -2261,7 +2261,7 @@ var ts;
2261
2261
},
2262
2262
watchDirectory: function (directoryName, callback, recursive) {
2263
2263
var options;
2264
- if (!directoryExists(directoryName)) {
2264
+ if (!directoryExists(directoryName) || (isUNCPath(directoryName) && process.platform === "win32") ) {
2265
2265
return noOpFileWatcher;
2266
2266
}
2267
2267
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
@@ -2276,6 +2276,9 @@ var ts;
2276
2276
}
2277
2277
;
2278
2278
});
2279
+ function isUNCPath(s) {
2280
+ return s.length > 2 && s.charCodeAt(0) === 47 && s.charCodeAt(1) === 47;
2281
+ }
2279
2282
},
2280
2283
resolvePath: function (path) {
2281
2284
return _path.resolve(path);
You can’t perform that action at this time.
0 commit comments