@typescript-deploys/pr-build 5.5.0-pr-57133-22 → 5.5.0-pr-57133-25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsc.js +1 -1
- package/lib/tsserver.js +1 -1
- package/lib/typescript.js +3 -2
- package/lib/typingsInstaller.js +1 -1
- package/package.json +2 -2
package/lib/tsc.js
CHANGED
|
@@ -1215,7 +1215,7 @@ function skipWhile(array, predicate) {
|
|
|
1215
1215
|
}
|
|
1216
1216
|
}
|
|
1217
1217
|
function isNodeLikeSystem() {
|
|
1218
|
-
return typeof process !== "undefined" && !!process.nextTick && !process.browser
|
|
1218
|
+
return typeof process !== "undefined" && !!process.nextTick && !process.browser;
|
|
1219
1219
|
}
|
|
1220
1220
|
|
|
1221
1221
|
// src/compiler/debug.ts
|
package/lib/tsserver.js
CHANGED
|
@@ -3936,7 +3936,7 @@ function skipWhile(array, predicate) {
|
|
|
3936
3936
|
}
|
|
3937
3937
|
}
|
|
3938
3938
|
function isNodeLikeSystem() {
|
|
3939
|
-
return typeof process !== "undefined" && !!process.nextTick && !process.browser
|
|
3939
|
+
return typeof process !== "undefined" && !!process.nextTick && !process.browser;
|
|
3940
3940
|
}
|
|
3941
3941
|
|
|
3942
3942
|
// src/compiler/debug.ts
|
package/lib/typescript.js
CHANGED
|
@@ -3936,7 +3936,7 @@ function skipWhile(array, predicate) {
|
|
|
3936
3936
|
}
|
|
3937
3937
|
}
|
|
3938
3938
|
function isNodeLikeSystem() {
|
|
3939
|
-
return typeof process !== "undefined" && !!process.nextTick && !process.browser
|
|
3939
|
+
return typeof process !== "undefined" && !!process.nextTick && !process.browser;
|
|
3940
3940
|
}
|
|
3941
3941
|
|
|
3942
3942
|
// src/compiler/debug.ts
|
|
@@ -189689,5 +189689,6 @@ if (typeof console !== "undefined") {
|
|
|
189689
189689
|
writeFileEnsuringDirectories,
|
|
189690
189690
|
zipWith
|
|
189691
189691
|
});
|
|
189692
|
-
})(typeof module !== "undefined" && module.exports ?
|
|
189692
|
+
})(typeof module !== "undefined" && module.exports ? module : { exports: ts });
|
|
189693
|
+
if (typeof module !== "undefined" && module.exports) { ts = module.exports; }
|
|
189693
189694
|
//# sourceMappingURL=typescript.js.map
|
package/lib/typingsInstaller.js
CHANGED
|
@@ -768,7 +768,7 @@ function enumerateInsertsAndDeletes(newItems, oldItems, comparer, inserted, dele
|
|
|
768
768
|
return hasChanges;
|
|
769
769
|
}
|
|
770
770
|
function isNodeLikeSystem() {
|
|
771
|
-
return typeof process !== "undefined" && !!process.nextTick && !process.browser
|
|
771
|
+
return typeof process !== "undefined" && !!process.nextTick && !process.browser;
|
|
772
772
|
}
|
|
773
773
|
|
|
774
774
|
// src/compiler/debug.ts
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@typescript-deploys/pr-build",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.5.0-pr-57133-
|
|
5
|
+
"version": "5.5.0-pr-57133-25",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"node": "20.1.0",
|
|
115
115
|
"npm": "8.19.4"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "e51b68947487a19228c9b735b0feb3aaa6c0e55b"
|
|
118
118
|
}
|