Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ce08af4

Browse filesBrowse files
committed
Merge branch 'master' into requireJson
2 parents 9d3ad54 + 23ed9f8 commit ce08af4
Copy full SHA for ce08af4

400 files changed

+11,164-11,535Lines changed: 11164 additions & 11535 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.gitmodules‎

Copy file name to clipboardExpand all lines: .gitmodules
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
path = tests/cases/user/TypeScript-WeChat-Starter/TypeScript-WeChat-Starter
1919
url = https://github.com/Microsoft/TypeScript-WeChat-Starter.git
2020
ignore = all
21+
[submodule "tests/cases/user/webpack/webpack"]
22+
path = tests/cases/user/webpack/webpack
23+
url = https://github.com/webpack/webpack.git
24+
ignore = all
Collapse file

‎Jakefile.js‎

Copy file name to clipboardExpand all lines: Jakefile.js
+5-86Lines changed: 5 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -87,93 +87,10 @@ var typingsInstallerSources = filesFromConfig(path.join(serverDirectory, "typing
8787
var watchGuardSources = filesFromConfig(path.join(serverDirectory, "watchGuard/tsconfig.json"));
8888
var serverSources = filesFromConfig(path.join(serverDirectory, "tsconfig.json"));
8989
var languageServiceLibrarySources = filesFromConfig(path.join(serverDirectory, "tsconfig.library.json"));
90+
var harnessSources = filesFromConfig("./src/harness/tsconfig.json");
9091

9192
var typesMapOutputPath = path.join(builtLocalDirectory, 'typesMap.json');
9293

93-
var harnessCoreSources = [
94-
"harness.ts",
95-
"virtualFileSystem.ts",
96-
"virtualFileSystemWithWatch.ts",
97-
"sourceMapRecorder.ts",
98-
"harnessLanguageService.ts",
99-
"fourslash.ts",
100-
"runnerbase.ts",
101-
"compilerRunner.ts",
102-
"typeWriter.ts",
103-
"fourslashRunner.ts",
104-
"projectsRunner.ts",
105-
"loggedIO.ts",
106-
"rwcRunner.ts",
107-
"externalCompileRunner.ts",
108-
"test262Runner.ts",
109-
"./parallel/shared.ts",
110-
"./parallel/host.ts",
111-
"./parallel/worker.ts",
112-
"runner.ts"
113-
].map(function (f) {
114-
return path.join(harnessDirectory, f);
115-
});
116-
117-
var harnessSources = harnessCoreSources.concat([
118-
"base64.ts",
119-
"incrementalParser.ts",
120-
"jsDocParsing.ts",
121-
"services/colorization.ts",
122-
"services/documentRegistry.ts",
123-
"services/preProcessFile.ts",
124-
"services/patternMatcher.ts",
125-
"session.ts",
126-
"versionCache.ts",
127-
"convertToBase64.ts",
128-
"transpile.ts",
129-
"reuseProgramStructure.ts",
130-
"textStorage.ts",
131-
"moduleResolution.ts",
132-
"tsconfigParsing.ts",
133-
"asserts.ts",
134-
"builder.ts",
135-
"commandLineParsing.ts",
136-
"configurationExtension.ts",
137-
"convertCompilerOptionsFromJson.ts",
138-
"convertTypeAcquisitionFromJson.ts",
139-
"tsserverProjectSystem.ts",
140-
"tscWatchMode.ts",
141-
"compileOnSave.ts",
142-
"typingsInstaller.ts",
143-
"projectErrors.ts",
144-
"matchFiles.ts",
145-
"organizeImports.ts",
146-
"initializeTSConfig.ts",
147-
"extractConstants.ts",
148-
"extractFunctions.ts",
149-
"extractRanges.ts",
150-
"extractTestHelpers.ts",
151-
"printer.ts",
152-
"textChanges.ts",
153-
"telemetry.ts",
154-
"transform.ts",
155-
"customTransforms.ts",
156-
"programMissingFiles.ts",
157-
"programNoParseFalsyFileNames.ts",
158-
"symbolWalker.ts",
159-
"languageService.ts",
160-
"publicApi.ts",
161-
"hostNewLineSupport.ts",
162-
].map(function (f) {
163-
return path.join(unittestsDirectory, f);
164-
})).concat([
165-
"protocol.ts",
166-
"utilities.ts",
167-
"scriptVersionCache.ts",
168-
"scriptInfo.ts",
169-
"project.ts",
170-
"typingsCache.ts",
171-
"editorServices.ts",
172-
"session.ts",
173-
].map(function (f) {
174-
return path.join(serverDirectory, f);
175-
}));
176-
17794
var es2015LibrarySources = [
17895
"es2015.core.d.ts",
17996
"es2015.collection.d.ts",
@@ -451,6 +368,8 @@ task("lib", libraryTargets);
451368
// Generate diagnostics
452369
var processDiagnosticMessagesJs = path.join(scriptsDirectory, "processDiagnosticMessages.js");
453370
var processDiagnosticMessagesTs = path.join(scriptsDirectory, "processDiagnosticMessages.ts");
371+
var processDiagnosticMessagesSources = filesFromConfig("./scripts/processDiagnosticMessages.tsconfig.json");
372+
454373
var diagnosticMessagesJson = path.join(compilerDirectory, "diagnosticMessages.json");
455374
var diagnosticInfoMapTs = path.join(compilerDirectory, "diagnosticInformationMap.generated.ts");
456375
var generatedDiagnosticMessagesJSON = path.join(compilerDirectory, "diagnosticMessages.generated.json");
@@ -460,8 +379,8 @@ file(processDiagnosticMessagesTs);
460379

461380
// processDiagnosticMessages script
462381
compileFile(processDiagnosticMessagesJs,
463-
[processDiagnosticMessagesTs],
464-
[processDiagnosticMessagesTs],
382+
processDiagnosticMessagesSources,
383+
processDiagnosticMessagesSources,
465384
[],
466385
/*useBuiltCompiler*/ false);
467386

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.