-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SolutionBuilderHostBase.getCustomTransformers to be used when emi…
…tting. (#44496) This allows not having to specify the transformers during normal watch scneario Builds on top of #43984
- Loading branch information
1 parent
14231af
commit 6d8fd79
Showing
6 changed files
with
505 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
namespace ts.tscWatch { | ||
it("unittests:: tsbuildWatch:: watchMode:: Public API with custom transformers", () => { | ||
const solution: File = { | ||
path: `${projectRoot}/tsconfig.json`, | ||
content: JSON.stringify({ | ||
references: [ | ||
{ path: "./shared/tsconfig.json" }, | ||
{ path: "./webpack/tsconfig.json" } | ||
], | ||
files: [] | ||
}) | ||
}; | ||
const sharedConfig: File = { | ||
path: `${projectRoot}/shared/tsconfig.json`, | ||
content: JSON.stringify({ | ||
compilerOptions: { composite: true }, | ||
}) | ||
}; | ||
const sharedIndex: File = { | ||
path: `${projectRoot}/shared/index.ts`, | ||
content: `export function f1() { } | ||
export class c { } | ||
export enum e { } | ||
// leading | ||
export function f2() { } // trailing` | ||
}; | ||
const webpackConfig: File = { | ||
path: `${projectRoot}/webpack/tsconfig.json`, | ||
content: JSON.stringify({ | ||
compilerOptions: { composite: true, }, | ||
references: [{ path: "../shared/tsconfig.json" }] | ||
}) | ||
}; | ||
const webpackIndex: File = { | ||
path: `${projectRoot}/webpack/index.ts`, | ||
content: `export function f2() { } | ||
export class c2 { } | ||
export enum e2 { } | ||
// leading | ||
export function f22() { } // trailing` | ||
}; | ||
const commandLineArgs = ["--b", "--w"]; | ||
const { sys, baseline, oldSnap } = createBaseline(createWatchedSystem([libFile, solution, sharedConfig, sharedIndex, webpackConfig, webpackIndex], { currentDirectory: projectRoot })); | ||
const { cb, getPrograms } = commandLineCallbacks(sys); | ||
const buildHost = createSolutionBuilderWithWatchHost( | ||
sys, | ||
/*createProgram*/ undefined, | ||
createDiagnosticReporter(sys, /*pretty*/ true), | ||
createBuilderStatusReporter(sys, /*pretty*/ true), | ||
createWatchStatusReporter(sys, /*pretty*/ true) | ||
); | ||
buildHost.afterProgramEmitAndDiagnostics = cb; | ||
buildHost.afterEmitBundle = cb; | ||
buildHost.getCustomTransformers = getCustomTransformers; | ||
const builder = createSolutionBuilderWithWatch(buildHost, [solution.path], { verbose: true }); | ||
builder.build(); | ||
runWatchBaseline({ | ||
scenario: "publicApi", | ||
subScenario: "with custom transformers", | ||
commandLineArgs, | ||
sys, | ||
baseline, | ||
oldSnap, | ||
getPrograms, | ||
changes: [ | ||
{ | ||
caption: "change to shared", | ||
change: sys => sys.prependFile(sharedIndex.path, "export function fooBar() {}"), | ||
timeouts: sys => { | ||
sys.checkTimeoutQueueLengthAndRun(1); // Shared | ||
sys.checkTimeoutQueueLengthAndRun(1); // webpack | ||
sys.checkTimeoutQueueLengthAndRun(1); // solution | ||
sys.checkTimeoutQueueLength(0); | ||
} | ||
} | ||
], | ||
watchOrSolution: builder | ||
}); | ||
|
||
function getCustomTransformers(project: string): CustomTransformers { | ||
const before: TransformerFactory<SourceFile> = context => { | ||
return file => visitEachChild(file, visit, context); | ||
function visit(node: Node): VisitResult<Node> { | ||
switch (node.kind) { | ||
case SyntaxKind.FunctionDeclaration: | ||
return visitFunction(node as FunctionDeclaration); | ||
default: | ||
return visitEachChild(node, visit, context); | ||
} | ||
} | ||
function visitFunction(node: FunctionDeclaration) { | ||
addSyntheticLeadingComment(node, SyntaxKind.MultiLineCommentTrivia, `@before${project}`, /*hasTrailingNewLine*/ true); | ||
return node; | ||
} | ||
}; | ||
|
||
const after: TransformerFactory<SourceFile> = context => { | ||
return file => visitEachChild(file, visit, context); | ||
function visit(node: Node): VisitResult<Node> { | ||
switch (node.kind) { | ||
case SyntaxKind.VariableStatement: | ||
return visitVariableStatement(node as VariableStatement); | ||
default: | ||
return visitEachChild(node, visit, context); | ||
} | ||
} | ||
function visitVariableStatement(node: VariableStatement) { | ||
addSyntheticLeadingComment(node, SyntaxKind.SingleLineCommentTrivia, `@after${project}`); | ||
return node; | ||
} | ||
}; | ||
return { before: [before], after: [after] }; | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.