@typescript-deploys/pr-build 5.8.0-pr-61034-2 → 5.8.0-pr-61034-8
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 +6 -5
- package/lib/typescript.js +6 -6
- package/package.json +1 -1
package/lib/_tsc.js
CHANGED
|
@@ -121267,12 +121267,13 @@ function createCreateProgramOptions(rootNames, options, host, oldProgram, config
|
|
|
121267
121267
|
typeScriptVersion: typeScriptVersion2
|
|
121268
121268
|
};
|
|
121269
121269
|
}
|
|
121270
|
-
function createProgram(
|
|
121270
|
+
function createProgram(_rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) {
|
|
121271
121271
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
121272
|
-
let
|
|
121273
|
-
const { rootNames, options, configFileParsingDiagnostics, projectReferences, typeScriptVersion: typeScriptVersion2, host: createProgramOptionsHost } =
|
|
121274
|
-
let { oldProgram } =
|
|
121275
|
-
|
|
121272
|
+
let _createProgramOptions = isArray(_rootNamesOrOptions) ? createCreateProgramOptions(_rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) : _rootNamesOrOptions;
|
|
121273
|
+
const { rootNames, options, configFileParsingDiagnostics, projectReferences, typeScriptVersion: typeScriptVersion2, host: createProgramOptionsHost } = _createProgramOptions;
|
|
121274
|
+
let { oldProgram } = _createProgramOptions;
|
|
121275
|
+
_createProgramOptions = void 0;
|
|
121276
|
+
_rootNamesOrOptions = void 0;
|
|
121276
121277
|
for (const option of commandLineOptionOfCustomType) {
|
|
121277
121278
|
if (hasProperty(options, option.name)) {
|
|
121278
121279
|
if (typeof options[option.name] === "string") {
|
package/lib/typescript.js
CHANGED
|
@@ -126116,12 +126116,13 @@ function createCreateProgramOptions(rootNames, options, host, oldProgram, config
|
|
|
126116
126116
|
typeScriptVersion: typeScriptVersion3
|
|
126117
126117
|
};
|
|
126118
126118
|
}
|
|
126119
|
-
function createProgram(
|
|
126119
|
+
function createProgram(_rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) {
|
|
126120
126120
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
126121
|
-
let
|
|
126122
|
-
const { rootNames, options, configFileParsingDiagnostics, projectReferences, typeScriptVersion: typeScriptVersion3, host: createProgramOptionsHost } =
|
|
126123
|
-
let { oldProgram } =
|
|
126124
|
-
|
|
126121
|
+
let _createProgramOptions = isArray(_rootNamesOrOptions) ? createCreateProgramOptions(_rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) : _rootNamesOrOptions;
|
|
126122
|
+
const { rootNames, options, configFileParsingDiagnostics, projectReferences, typeScriptVersion: typeScriptVersion3, host: createProgramOptionsHost } = _createProgramOptions;
|
|
126123
|
+
let { oldProgram } = _createProgramOptions;
|
|
126124
|
+
_createProgramOptions = void 0;
|
|
126125
|
+
_rootNamesOrOptions = void 0;
|
|
126125
126126
|
for (const option of commandLineOptionOfCustomType) {
|
|
126126
126127
|
if (hasProperty(options, option.name)) {
|
|
126127
126128
|
if (typeof options[option.name] === "string") {
|
|
@@ -152138,7 +152139,6 @@ function createLanguageService(host, documentRegistry = createDocumentRegistry(h
|
|
|
152138
152139
|
projectReferences
|
|
152139
152140
|
};
|
|
152140
152141
|
program = createProgram(options);
|
|
152141
|
-
options.oldProgram = void 0;
|
|
152142
152142
|
compilerHost = void 0;
|
|
152143
152143
|
parsedCommandLines = void 0;
|
|
152144
152144
|
releasedScriptKinds = void 0;
|
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.8.0-pr-61034-
|
|
5
|
+
"version": "5.8.0-pr-61034-8",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|